diff --git a/extract_data.py b/extract_data.py index 92682ca..0b4b142 100644 --- a/extract_data.py +++ b/extract_data.py @@ -52,31 +52,43 @@ def parse_cycle_deltas(file_path): 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)') + parser.add_argument('files', nargs='+', help='Path to trace file(s). Last file is baseline if more than one.') args = parser.parse_args() - try: - df_with = parse_cycle_deltas(args.with_file) - df_without = parse_cycle_deltas(args.without_file) + if len(args.files) == 2: + files = args.files + baseline_idx = 1 + elif len(args.files) >= 3: + files = args.files + baseline_idx = len(files) - 1 + else: + print("Error: At least 2 files required") + exit(1) - 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." - ) + try: + dfs = [parse_cycle_deltas(f) for f in files] + baseline_df = dfs[baseline_idx] + + for i, df in enumerate(dfs): + if len(df) != len(baseline_df): + raise ValueError( + f"Mismatch in number of deltas: {files[i]} has {len(df)} deltas, " + f"but {files[baseline_idx]} has {len(baseline_df)} 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'] + 'start_cycle_baseline': baseline_df['start_cycle'], + 'end_cycle_baseline': baseline_df['end_cycle'], + 'delta_baseline': baseline_df['delta'] }) - print("Cycle Delta Analysis:") + for i, df in enumerate(dfs): + if i == baseline_idx: + result[f'speedup_{i}'] = 1.0 + else: + result[f'speedup_{i}'] = baseline_df['delta'] / df['delta'] + + print("Cycle Delta Analysis (baseline: " + files[baseline_idx] + "):") print(result) result.to_parquet("result.parquet") diff --git a/traces/with_czero.txt b/traces/with_czero.txt index f8b4527..ae8b9bc 100644 --- a/traces/with_czero.txt +++ b/traces/with_czero.txt @@ -163,14 +163,14 @@ 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: 0x0000000080000144 (0x1f118193) addi gp, gp, 497 +core 0: 3 0x0000000080000144 (0x1f118193) x3 0x0000000080003331 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: 0x000000008000014c (0x03720213) addi tp, tp, 55 +core 0: 3 0x000000008000014c (0x03720213) x4 0x000000008000317f core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 -core 0: 3 0x0000000080000150 (0xfc027213) x4 0x00000000800030c0 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080003140 core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 core 0: 0x0000000080000158 (0x00100593) li a1, 1 @@ -182,2563 +182,9450 @@ 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: 3 0x0000000080000168 (0x00410133) x2 0x0000000080023140 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: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080003140 +core 0: 0x0000000080000174 (0x2650106f) j pc + 0x1a64 +core 0: 3 0x0000000080000174 (0x2650106f) 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: 0x0000000080001bd8 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bd8 (0xbd010113) x2 0x0000000080022d10 +core 0: 0x0000000080001bdc (0xde718793) addi a5, gp, -537 +core 0: 3 0x0000000080001bdc (0xde718793) x15 0x0000000080003118 +core 0: 0x0000000080001be0 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001be0 (0x42813023) mem 0x0000000080023130 0x0000000000000000 +core 0: 0x0000000080001be4 (0xde718413) addi s0, gp, -537 +core 0: 3 0x0000000080001be4 (0xde718413) x8 0x0000000080003118 +core 0: 0x0000000080001be8 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001be8 (0x40913c23) mem 0x0000000080023128 0x0000000000000000 +core 0: 0x0000000080001bec (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001bec (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001bf0 (0x41213823) mem 0x0000000080023120 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001bf4 (0x41313423) mem 0x0000000080023118 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001bf8 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001bfc (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001bfc (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001c00 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c00 (0x00020513) x10 0x0000000080003140 +core 0: 0x0000000080001c04 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c04 (0x00078593) x11 0x0000000080003118 +core 0: 0x0000000080001c08 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c08 (0x00048613) x12 0x0000000000000000 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: 3 0x0000000080001c0c (0x42113423) mem 0x0000000080023138 0x0000000000000000 +core 0: 0x0000000080001c10 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c10 (0x41413023) mem 0x0000000080023110 0x0000000000000000 +core 0: 0x0000000080001c14 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c14 (0x3f513c23) mem 0x0000000080023108 0x0000000000000000 +core 0: 0x0000000080001c18 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c18 (0x00020a93) x21 0x0000000080003140 +core 0: 0x0000000080001c1c (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c1c (0xe91ff0ef) x1 0x0000000080001c20 +core 0: >>>> memcpy +core 0: 0x0000000080001aac (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001aac (0x00c5e7b3) x15 0x0000000080003118 +core 0: 0x0000000080001ab0 (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001ab0 (0x00f567b3) x15 0x0000000080003158 +core 0: 0x0000000080001ab4 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ab4 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ab8 (0x00058393) x7 0x0000000080003118 +core 0: 0x0000000080001abc (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001abc (0x00c506b3) x13 0x0000000080003140 +core 0: 0x0000000080001ac0 (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001ac0 (0x02078463) +core 0: 0x0000000080001ae8 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001ae8 (0x04050713) x14 0x0000000080003180 +core 0: 0x0000000080001aec (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001aec (0x08d77463) +core 0: 0x0000000080001b74 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b74 (0x00050793) x15 0x0000000080003140 +core 0: 0x0000000080001b78 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001b78 (0xfddff06f) +core 0: 0x0000000080001b54 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b54 (0xf8d7f8e3) +core 0: 0x0000000080001ae4 (0x00008067) ret +core 0: 3 0x0000000080001ae4 (0x00008067) +core 0: 0x0000000080001c20 (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c20 (0x00001617) x12 0x0000000080002c20 +core 0: 0x0000000080001c24 (0x56460613) addi a2, a2, 1380 +core 0: 3 0x0000000080001c24 (0x56460613) x12 0x0000000080003184 +core 0: 0x0000000080001c28 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c28 (0x40860633) x12 0x000000000000006c +core 0: 0x0000000080001c2c (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c2c (0x009a8533) x10 0x0000000080003140 +core 0: 0x0000000080001c30 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c30 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c34 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c34 (0xf49ff0ef) x1 0x0000000080001c38 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: 0x0000000080001b7c (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b7c (0x00c567b3) x15 0x000000008000316c +core 0: 0x0000000080001b80 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b80 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b84 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001b84 (0x00c50633) x12 0x00000000800031ac +core 0: 0x0000000080001b88 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001b88 (0x00078e63) +core 0: 0x0000000080001b8c (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b8c (0x00050793) x15 0x0000000080003140 +core 0: 0x0000000080001b90 (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001b90 (0x04c57263) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003141 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003140 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003142 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003141 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003143 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003142 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003144 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003143 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003145 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003144 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003146 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003145 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003147 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003146 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003148 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003147 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003149 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003148 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003149 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000314f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003150 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000314f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003151 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003150 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003152 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003151 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003153 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003152 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003154 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003153 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003155 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003154 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003156 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003155 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003157 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003156 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003158 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003157 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003159 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003158 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003159 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000315f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003160 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000315f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003161 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003160 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003162 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003161 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003163 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003162 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003164 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003163 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003165 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003164 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003166 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003165 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003167 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003166 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003168 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003167 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003169 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003168 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003169 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000316f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003170 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000316f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003171 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003170 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003172 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003171 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003173 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003172 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003174 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003173 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003175 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003174 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003176 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003175 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003177 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003176 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003178 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003177 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003179 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003178 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003179 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000317f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003180 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000317f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003181 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003180 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003182 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003181 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003183 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003182 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003184 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003183 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003185 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003184 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003186 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003185 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003187 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003186 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003188 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003187 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003189 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003188 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003189 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000318f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003190 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000318f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003191 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003190 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003192 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003191 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003193 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003192 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003194 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003193 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003195 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003194 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003196 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003195 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003197 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003196 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003198 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003197 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x0000000080003199 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003198 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319a +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x0000000080003199 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319b +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319a 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319c +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319b 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319d +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319c 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319e +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319d 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x000000008000319f +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319e 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a0 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x000000008000319f 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a1 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a0 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a2 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a1 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a3 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a2 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a4 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a3 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a5 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a4 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a6 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a5 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a7 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a6 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a8 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a7 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031a9 +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a8 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031aa +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031a9 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031ab +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031aa 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001b94 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b94 (0x00178793) x15 0x00000000800031ac +core 0: 0x0000000080001b98 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b98 (0xfeb78fa3) mem 0x00000000800031ab 0x00 +core 0: 0x0000000080001b9c (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b9c (0xfef61ce3) +core 0: 0x0000000080001ba0 (0x00008067) ret +core 0: 3 0x0000000080001ba0 (0x00008067) +core 0: 0x0000000080001c38 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c38 (0x03f10a13) x20 0x0000000080022d4f +core 0: 0x0000000080001c3c (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c3c (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c40 (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c40 (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c44 (0xd45ff0ef) jal pc - 0x2bc +core 0: 3 0x0000000080001c44 (0xd45ff0ef) x1 0x0000000080001c48 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: 0x0000000080001c48 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c48 (0xfc0a7a13) x20 0x0000000080022d40 +core 0: 0x0000000080001c4c (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c4c (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c50 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c50 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c54 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c54 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c58 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c58 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c5c (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c5c (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c60 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c60 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c64 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c64 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c68 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c68 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c6c (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c6c (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c70 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c70 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c74 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c74 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c78 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c78 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c7c (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c7c (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c80 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c80 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c84 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c84 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c88 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c88 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001c8c (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001c8c (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001c90 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001c90 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001c94 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001c94 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001c98 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001c98 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001c9c (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001c9c (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001ca0 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001ca0 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001ca4 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001ca4 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001ca8 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001ca8 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cac (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cac (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cb0 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cb0 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cb4 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cb4 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cb8 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cb8 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cbc (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cbc (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cc0 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cc0 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cc4 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cc4 (0x16c000ef) x1 0x0000000080001cc8 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: 0x0000000080001e30 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e30 (0xc00027f3) x15 0x0000000000000557 +core 0: 0x0000000080001e34 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e34 (0x00000697) x13 0x0000000080001e34 +core 0: 0x0000000080001e38 (0x11468693) addi a3, a3, 276 +core 0: 3 0x0000000080001e38 (0x11468693) x13 0x0000000080001f48 +core 0: 0x0000000080001e3c (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e3c (0x00000617) x12 0x0000000080001e3c +core 0: 0x0000000080001e40 (0x50c60613) addi a2, a2, 1292 +core 0: 3 0x0000000080001e40 (0x50c60613) x12 0x0000000080002348 +core 0: 0x0000000080001e44 (0x00068813) mv a6, a3 +core 0: 3 0x0000000080001e44 (0x00068813) x16 0x0000000080001f48 +core 0: 0x0000000080001e48 (0x00060593) mv a1, a2 +core 0: 3 0x0000000080001e48 (0x00060593) x11 0x0000000080002348 +core 0: 0x0000000080001e4c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e4c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00001517) auipc a0, 0x1 +core 0: 3 0x0000000080001e50 (0x00001517) x10 0x0000000080002e50 +core 0: 0x0000000080001e54 (0xce850513) addi a0, a0, -792 +core 0: 3 0x0000000080001e54 (0xce850513) x10 0x0000000080002b38 +core 0: 0x0000000080001e58 (0x08000e13) li t3, 128 +core 0: 3 0x0000000080001e58 (0x08000e13) x28 0x0000000000000080 +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b38 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000000a mem 0x0000000080002348 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002350 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f50 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b40 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000014 mem 0x0000000080002350 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000014 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b40 0x0000000000000014 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002358 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f58 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b48 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000001e mem 0x0000000080002358 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000001e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b48 0x000000000000001e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002360 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f60 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b50 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000028 mem 0x0000000080002360 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001f60 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002368 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f68 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b58 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000032 mem 0x0000000080002368 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f68 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000032 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b58 0x0000000000000032 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002370 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f70 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b60 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000003c mem 0x0000000080002370 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002378 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f78 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b68 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000046 mem 0x0000000080002378 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001f78 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002380 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f80 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b70 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000050 mem 0x0000000080002380 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f80 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000050 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b70 0x0000000000000050 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002388 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f88 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b78 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000005a mem 0x0000000080002388 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001f88 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002390 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f90 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b80 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000064 mem 0x0000000080002390 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000064 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b80 0x0000000000000064 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002398 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001f98 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b88 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000006e mem 0x0000000080002398 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000006e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b88 0x000000000000006e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023a0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fa0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b90 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000078 mem 0x00000000800023a0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000078 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b90 0x0000000000000078 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023a8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fa8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002b98 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000082 mem 0x00000000800023a8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002b98 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023b0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fb0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ba0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000008c mem 0x00000000800023b0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001fb0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ba0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023b8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fb8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ba8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000096 mem 0x00000000800023b8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001fb8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000096 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ba8 0x0000000000000096 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023c0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fc0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bb0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000a0 mem 0x00000000800023c0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023c8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fc8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bb8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000aa mem 0x00000000800023c8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001fc8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023d0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fd0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bc0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000b4 mem 0x00000000800023d0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000000b4 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bc0 0x00000000000000b4 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023d8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fd8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bc8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000be mem 0x00000000800023d8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001fd8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000000be +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bc8 0x00000000000000be +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023e0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fe0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bd0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000c8 mem 0x00000000800023e0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023e8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001fe8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bd8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000d2 mem 0x00000000800023e8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000000d2 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bd8 0x00000000000000d2 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023f0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001ff0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002be0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000dc mem 0x00000000800023f0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000000dc +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002be0 0x00000000000000dc +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800023f8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080001ff8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002be8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000e6 mem 0x00000000800023f8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002400 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002000 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bf0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000f0 mem 0x0000000080002400 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000000f0 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bf0 0x00000000000000f0 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002408 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002008 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002bf8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000000fa mem 0x0000000080002408 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002bf8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002410 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002010 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c00 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000104 mem 0x0000000080002410 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002418 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002018 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c08 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000010e mem 0x0000000080002418 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000010e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c08 0x000000000000010e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002420 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002020 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c10 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000118 mem 0x0000000080002420 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000118 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c10 0x0000000000000118 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002428 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002028 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c18 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000122 mem 0x0000000080002428 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002028 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000122 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c18 0x0000000000000122 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002430 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002030 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c20 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000012c mem 0x0000000080002430 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c20 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002438 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002038 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c28 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000136 mem 0x0000000080002438 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002440 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002040 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c30 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000140 mem 0x0000000080002440 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000140 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c30 0x0000000000000140 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002448 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002048 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c38 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000014a mem 0x0000000080002448 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000014a +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c38 0x000000000000014a +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002450 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002050 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c40 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000154 mem 0x0000000080002450 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002458 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002058 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c48 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000015e mem 0x0000000080002458 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002058 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c48 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002460 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002060 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c50 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000168 mem 0x0000000080002460 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000168 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c50 0x0000000000000168 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002468 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002068 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c58 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000172 mem 0x0000000080002468 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002068 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000172 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c58 0x0000000000000172 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002470 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002070 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c60 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000017c mem 0x0000000080002470 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002478 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002078 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c68 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000186 mem 0x0000000080002478 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000186 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c68 0x0000000000000186 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002480 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002080 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c70 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000190 mem 0x0000000080002480 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002080 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000190 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c70 0x0000000000000190 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002488 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002088 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c78 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000019a mem 0x0000000080002488 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002088 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002490 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002090 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c80 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001a4 mem 0x0000000080002490 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001a4 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c80 0x00000000000001a4 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002498 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002098 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c88 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001ae mem 0x0000000080002498 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c88 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024a0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020a0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c90 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001b8 mem 0x00000000800024a0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024a8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020a8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002c98 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001c2 mem 0x00000000800024a8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020a8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001c2 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002c98 0x00000000000001c2 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024b0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020b0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ca0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001cc mem 0x00000000800024b0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024b8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020b8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ca8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001d6 mem 0x00000000800024b8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001d6 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ca8 0x00000000000001d6 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024c0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020c0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cb0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001e0 mem 0x00000000800024c0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020c0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001e0 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cb0 0x00000000000001e0 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024c8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020c8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cb8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001ea mem 0x00000000800024c8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020c8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024d0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020d0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cc0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001f4 mem 0x00000000800024d0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001f4 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cc0 0x00000000000001f4 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024d8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020d8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cc8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000001fe mem 0x00000000800024d8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000001fe +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cc8 0x00000000000001fe +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024e0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020e0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cd0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000208 mem 0x00000000800024e0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cd0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024e8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020e8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cd8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000212 mem 0x00000000800024e8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024f0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020f0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ce0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000021c mem 0x00000000800024f0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000021c +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ce0 0x000000000000021c +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800024f8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800020f8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ce8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000226 mem 0x00000000800024f8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002500 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002100 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cf0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000230 mem 0x0000000080002500 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000230 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cf0 0x0000000000000230 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002508 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002108 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002cf8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000023a mem 0x0000000080002508 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000023a +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002cf8 0x000000000000023a +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002510 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002110 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d00 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000244 mem 0x0000000080002510 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002110 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000244 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d00 0x0000000000000244 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002518 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002118 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d08 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000024e mem 0x0000000080002518 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d08 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002520 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002120 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d10 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000258 mem 0x0000000080002520 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d10 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002528 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002128 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d18 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000262 mem 0x0000000080002528 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002128 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d18 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002530 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002130 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d20 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000026c mem 0x0000000080002530 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002130 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000026c +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d20 0x000000000000026c +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002538 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002138 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d28 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000276 mem 0x0000000080002538 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002540 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002140 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d30 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000280 mem 0x0000000080002540 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000280 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d30 0x0000000000000280 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002548 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002148 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d38 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000028a mem 0x0000000080002548 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002550 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002150 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d40 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000294 mem 0x0000000080002550 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000294 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d40 0x0000000000000294 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002558 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002158 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d48 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000029e mem 0x0000000080002558 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000029e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d48 0x000000000000029e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002560 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002160 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d50 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002a8 mem 0x0000000080002560 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002160 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002568 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002168 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d58 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002b2 mem 0x0000000080002568 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002168 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000002b2 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d58 0x00000000000002b2 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002570 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002170 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d60 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002bc mem 0x0000000080002570 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002578 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002178 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d68 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002c6 mem 0x0000000080002578 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002580 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002180 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d70 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002d0 mem 0x0000000080002580 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002180 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000002d0 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d70 0x00000000000002d0 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002588 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002188 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d78 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002da mem 0x0000000080002588 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002188 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002590 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002190 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d80 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002e4 mem 0x0000000080002590 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000002e4 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d80 0x00000000000002e4 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002598 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002198 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d88 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002ee mem 0x0000000080002598 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000002ee +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d88 0x00000000000002ee +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025a0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021a0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d90 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000002f8 mem 0x00000000800025a0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000002f8 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d90 0x00000000000002f8 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025a8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021a8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002d98 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000302 mem 0x00000000800025a8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002d98 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025b0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021b0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002da0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000030c mem 0x00000000800025b0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021b0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002da0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025b8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021b8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002da8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000316 mem 0x00000000800025b8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021b8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000316 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002da8 0x0000000000000316 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025c0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021c0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002db0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000320 mem 0x00000000800025c0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025c8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021c8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002db8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000032a mem 0x00000000800025c8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021c8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002db8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025d0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021d0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002dc0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000334 mem 0x00000000800025d0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000334 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002dc0 0x0000000000000334 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025d8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021d8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002dc8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000033e mem 0x00000000800025d8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021d8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000033e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002dc8 0x000000000000033e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025e0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021e0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002dd0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000348 mem 0x00000000800025e0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025e8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021e8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002dd8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000352 mem 0x00000000800025e8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000352 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002dd8 0x0000000000000352 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025f0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021f0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002de0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000035c mem 0x00000000800025f0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000035c +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002de0 0x000000000000035c +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800025f8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800021f8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002de8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000366 mem 0x00000000800025f8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002600 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002200 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002df0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000370 mem 0x0000000080002600 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000370 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002df0 0x0000000000000370 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002608 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002208 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002df8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000037a mem 0x0000000080002608 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002df8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002610 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002210 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e00 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000384 mem 0x0000000080002610 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002618 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002218 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e08 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000038e mem 0x0000000080002618 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000038e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e08 0x000000000000038e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002620 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002220 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e10 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000398 mem 0x0000000080002620 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000398 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e10 0x0000000000000398 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002628 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002228 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e18 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003a2 mem 0x0000000080002628 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002228 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000003a2 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e18 0x00000000000003a2 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002630 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002230 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e20 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003ac mem 0x0000000080002630 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e20 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002638 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002238 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e28 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003b6 mem 0x0000000080002638 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002640 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002240 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e30 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003c0 mem 0x0000000080002640 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000003c0 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e30 0x00000000000003c0 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002648 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002248 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e38 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003ca mem 0x0000000080002648 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000003ca +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e38 0x00000000000003ca +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002650 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002250 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e40 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003d4 mem 0x0000000080002650 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002658 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002258 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e48 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003de mem 0x0000000080002658 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002258 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e48 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002660 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002260 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e50 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003e8 mem 0x0000000080002660 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000003e8 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e50 0x00000000000003e8 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002668 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002268 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e58 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003f2 mem 0x0000000080002668 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002268 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000003f2 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e58 0x00000000000003f2 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002670 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002270 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e60 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000003fc mem 0x0000000080002670 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002678 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002278 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e68 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000406 mem 0x0000000080002678 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000406 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e68 0x0000000000000406 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002680 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002280 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e70 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000410 mem 0x0000000080002680 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002280 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000410 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e70 0x0000000000000410 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002688 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002288 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e78 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000041a mem 0x0000000080002688 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002288 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002690 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002290 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e80 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000424 mem 0x0000000080002690 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000424 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e80 0x0000000000000424 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002698 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002298 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e88 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000042e mem 0x0000000080002698 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e88 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026a0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022a0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e90 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000438 mem 0x00000000800026a0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026a8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022a8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002e98 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000442 mem 0x00000000800026a8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022a8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000442 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002e98 0x0000000000000442 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026b0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022b0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ea0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000044c mem 0x00000000800026b0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026b8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022b8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ea8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000456 mem 0x00000000800026b8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000456 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ea8 0x0000000000000456 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026c0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022c0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002eb0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000460 mem 0x00000000800026c0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022c0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000460 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002eb0 0x0000000000000460 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026c8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022c8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002eb8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000046a mem 0x00000000800026c8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022c8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002eb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026d0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022d0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ec0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000474 mem 0x00000000800026d0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000474 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ec0 0x0000000000000474 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026d8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022d8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ec8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000047e mem 0x00000000800026d8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022d8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000047e +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ec8 0x000000000000047e +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026e0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022e0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ed0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000488 mem 0x00000000800026e0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ed0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026e8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022e8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ed8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000492 mem 0x00000000800026e8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022e8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ed8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026f0 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022f0 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ee0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x000000000000049c mem 0x00000000800026f0 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x00000000800022f0 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x000000000000049c +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ee0 0x000000000000049c +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x00000000800026f8 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x00000000800022f8 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ee8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004a6 mem 0x00000000800026f8 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x00000000800022f8 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ee8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002700 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002300 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ef0 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004b0 mem 0x0000000080002700 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000004b0 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ef0 0x00000000000004b0 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002708 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002308 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002ef8 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004ba mem 0x0000000080002708 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000004ba +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002ef8 0x00000000000004ba +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002710 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002310 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f00 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004c4 mem 0x0000000080002710 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002310 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000004c4 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f00 0x00000000000004c4 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002718 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002318 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f08 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004ce mem 0x0000000080002718 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f08 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002720 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002320 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f10 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004d8 mem 0x0000000080002720 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f10 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002728 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002328 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f18 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004e2 mem 0x0000000080002728 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002328 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f18 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002730 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002330 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f20 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004ec mem 0x0000000080002730 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002330 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x00000000000004ec +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f20 0x00000000000004ec +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002738 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002338 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f28 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x00000000000004f6 mem 0x0000000080002738 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000000 mem 0x0000000080002338 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000000 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002740 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002340 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e5c (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001e5c (0x20a7e8b3) x17 0x0000000080002f30 +core 0: 0x0000000080001e60 (0x0005b703) ld a4, 0(a1) +core 0: 3 0x0000000080001e60 (0x0005b703) x14 0x0000000000000500 mem 0x0000000080002740 +core 0: 0x0000000080001e64 (0x00083303) ld t1, 0(a6) +core 0: 3 0x0000000080001e64 (0x00083303) x6 0x0000000000000001 mem 0x0000000080002340 +core 0: 0x0000000080001e68 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e68 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e6c (0x0e675733) czero.eqz a4, a4, t1 +core 0: 3 0x0000000080001e6c (0x0e675733) x14 0x0000000000000500 +core 0: 0x0000000080001e70 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001e70 (0x00e8b023) mem 0x0000000080002f30 0x0000000000000500 +core 0: 0x0000000080001e74 (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001e74 (0x00858593) x11 0x0000000080002748 +core 0: 0x0000000080001e78 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001e78 (0x00880813) x16 0x0000000080002348 +core 0: 0x0000000080001e7c (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001e7c (0xffc790e3) +core 0: 0x0000000080001e80 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e80 (0xc00027f3) x15 0x0000000000000bf8 +core 0: 0x0000000080001e84 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e84 (0xc00027f3) x15 0x0000000000000c01 +core 0: 0x0000000080001e88 (0x00000817) auipc a6, 0x0 +core 0: 3 0x0000000080001e88 (0x00000817) x16 0x0000000080001e88 +core 0: 0x0000000080001e8c (0x4c080813) addi a6, a6, 1216 +core 0: 3 0x0000000080001e8c (0x4c080813) x16 0x0000000080002348 +core 0: 0x0000000080001e90 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001e90 (0x00000597) x11 0x0000000080001e90 +core 0: 0x0000000080001e94 (0x0b858593) addi a1, a1, 184 +core 0: 3 0x0000000080001e94 (0x0b858593) x11 0x0000000080001f48 +core 0: 0x0000000080001e98 (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e98 (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e9c (0x08000e13) li t3, 128 +core 0: 3 0x0000000080001e9c (0x08000e13) x28 0x0000000000000080 +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b38 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000000a mem 0x0000000080002348 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000000a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b38 0x000000000000000a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002350 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f50 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b40 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000014 mem 0x0000000080002350 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002358 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f58 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b48 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000001e mem 0x0000000080002358 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b48 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002360 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f60 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b50 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000028 mem 0x0000000080002360 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001f60 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000028 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b50 0x0000000000000028 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002368 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f68 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b58 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000032 mem 0x0000000080002368 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f68 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002370 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f70 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b60 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000003c mem 0x0000000080002370 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000003c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b60 0x000000000000003c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002378 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f78 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b68 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000046 mem 0x0000000080002378 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001f78 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000046 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b68 0x0000000000000046 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002380 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f80 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b70 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000050 mem 0x0000000080002380 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f80 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002388 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f88 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b78 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000005a mem 0x0000000080002388 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001f88 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000005a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b78 0x000000000000005a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002390 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f90 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b80 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000064 mem 0x0000000080002390 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002398 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001f98 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b88 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000006e mem 0x0000000080002398 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023a0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fa0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b90 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000078 mem 0x00000000800023a0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b90 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023a8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fa8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002b98 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000082 mem 0x00000000800023a8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000082 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b98 0x0000000000000082 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023b0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fb0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ba0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000008c mem 0x00000000800023b0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001fb0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000008c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ba0 0x000000000000008c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023b8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fb8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ba8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000096 mem 0x00000000800023b8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001fb8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023c0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fc0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bb0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000a0 mem 0x00000000800023c0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000000a0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bb0 0x00000000000000a0 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023c8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fc8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bb8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000aa mem 0x00000000800023c8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001fc8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000000aa +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bb8 0x00000000000000aa +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023d0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fd0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bc0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000b4 mem 0x00000000800023d0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bc0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023d8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fd8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bc8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000be mem 0x00000000800023d8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001fd8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023e0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fe0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bd0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000c8 mem 0x00000000800023e0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000000c8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bd0 0x00000000000000c8 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023e8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001fe8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bd8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000d2 mem 0x00000000800023e8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bd8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023f0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001ff0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002be0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000dc mem 0x00000000800023f0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002be0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800023f8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080001ff8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002be8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000e6 mem 0x00000000800023f8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000000e6 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002be8 0x00000000000000e6 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002400 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002000 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bf0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000f0 mem 0x0000000080002400 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bf0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002408 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002008 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002bf8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000000fa mem 0x0000000080002408 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000000fa +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bf8 0x00000000000000fa +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002410 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002010 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c00 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000104 mem 0x0000000080002410 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000104 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c00 0x0000000000000104 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002418 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002018 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c08 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000010e mem 0x0000000080002418 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c08 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002420 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002020 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c10 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000118 mem 0x0000000080002420 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002428 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002028 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c18 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000122 mem 0x0000000080002428 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002028 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002430 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002030 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c20 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000012c mem 0x0000000080002430 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000012c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c20 0x000000000000012c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002438 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002038 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c28 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000136 mem 0x0000000080002438 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000136 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c28 0x0000000000000136 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002440 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002040 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c30 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000140 mem 0x0000000080002440 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002448 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002048 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c38 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000014a mem 0x0000000080002448 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c38 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002450 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002050 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c40 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000154 mem 0x0000000080002450 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000154 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c40 0x0000000000000154 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002458 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002058 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c48 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000015e mem 0x0000000080002458 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002058 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000015e +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c48 0x000000000000015e +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002460 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002060 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c50 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000168 mem 0x0000000080002460 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c50 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002468 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002068 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c58 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000172 mem 0x0000000080002468 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002068 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002470 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002070 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c60 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000017c mem 0x0000000080002470 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000017c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c60 0x000000000000017c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002478 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002078 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c68 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000186 mem 0x0000000080002478 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c68 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002480 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002080 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c70 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000190 mem 0x0000000080002480 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002080 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002488 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002088 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c78 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000019a mem 0x0000000080002488 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002088 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000019a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c78 0x000000000000019a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002490 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002090 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c80 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001a4 mem 0x0000000080002490 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002498 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002098 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c88 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001ae mem 0x0000000080002498 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000001ae +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c88 0x00000000000001ae +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024a0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020a0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c90 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001b8 mem 0x00000000800024a0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000001b8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c90 0x00000000000001b8 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024a8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020a8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002c98 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001c2 mem 0x00000000800024a8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020a8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024b0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020b0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ca0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001cc mem 0x00000000800024b0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000001cc +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ca0 0x00000000000001cc +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024b8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020b8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ca8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001d6 mem 0x00000000800024b8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ca8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024c0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020c0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cb0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001e0 mem 0x00000000800024c0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020c0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024c8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020c8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cb8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001ea mem 0x00000000800024c8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020c8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000001ea +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cb8 0x00000000000001ea +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024d0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020d0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cc0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001f4 mem 0x00000000800024d0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024d8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020d8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cc8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000001fe mem 0x00000000800024d8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024e0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020e0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cd0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000208 mem 0x00000000800024e0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000208 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cd0 0x0000000000000208 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024e8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020e8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cd8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000212 mem 0x00000000800024e8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000212 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cd8 0x0000000000000212 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024f0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020f0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ce0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000021c mem 0x00000000800024f0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ce0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800024f8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800020f8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ce8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000226 mem 0x00000000800024f8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000226 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ce8 0x0000000000000226 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002500 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002100 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cf0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000230 mem 0x0000000080002500 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002508 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002108 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002cf8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000023a mem 0x0000000080002508 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cf8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002510 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002110 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d00 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000244 mem 0x0000000080002510 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002110 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002518 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002118 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d08 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000024e mem 0x0000000080002518 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000024e +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d08 0x000000000000024e +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002520 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002120 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d10 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000258 mem 0x0000000080002520 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000258 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d10 0x0000000000000258 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002528 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002128 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d18 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000262 mem 0x0000000080002528 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002128 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000262 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d18 0x0000000000000262 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002530 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002130 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d20 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000026c mem 0x0000000080002530 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002130 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002538 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002138 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d28 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000276 mem 0x0000000080002538 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000276 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d28 0x0000000000000276 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002540 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002140 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d30 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000280 mem 0x0000000080002540 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002548 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002148 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d38 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000028a mem 0x0000000080002548 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000028a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d38 0x000000000000028a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002550 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002150 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d40 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000294 mem 0x0000000080002550 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002558 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002158 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d48 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000029e mem 0x0000000080002558 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d48 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002560 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002160 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d50 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002a8 mem 0x0000000080002560 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002160 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000002a8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d50 0x00000000000002a8 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002568 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002168 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d58 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002b2 mem 0x0000000080002568 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002168 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002570 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002170 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d60 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002bc mem 0x0000000080002570 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000002bc +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d60 0x00000000000002bc +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002578 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002178 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d68 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002c6 mem 0x0000000080002578 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000002c6 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d68 0x00000000000002c6 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002580 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002180 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d70 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002d0 mem 0x0000000080002580 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002180 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002588 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002188 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d78 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002da mem 0x0000000080002588 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002188 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000002da +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d78 0x00000000000002da +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002590 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002190 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d80 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002e4 mem 0x0000000080002590 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002598 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002198 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d88 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002ee mem 0x0000000080002598 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025a0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021a0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d90 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000002f8 mem 0x00000000800025a0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d90 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025a8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021a8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002d98 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000302 mem 0x00000000800025a8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000302 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d98 0x0000000000000302 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025b0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021b0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002da0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000030c mem 0x00000000800025b0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021b0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000030c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002da0 0x000000000000030c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025b8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021b8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002da8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000316 mem 0x00000000800025b8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021b8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025c0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021c0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002db0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000320 mem 0x00000000800025c0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000320 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002db0 0x0000000000000320 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025c8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021c8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002db8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000032a mem 0x00000000800025c8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021c8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000032a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002db8 0x000000000000032a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025d0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021d0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002dc0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000334 mem 0x00000000800025d0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dc0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025d8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021d8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002dc8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000033e mem 0x00000000800025d8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021d8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025e0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021e0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002dd0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000348 mem 0x00000000800025e0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000348 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dd0 0x0000000000000348 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025e8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021e8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002dd8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000352 mem 0x00000000800025e8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dd8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025f0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021f0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002de0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000035c mem 0x00000000800025f0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002de0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800025f8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800021f8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002de8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000366 mem 0x00000000800025f8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000366 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002de8 0x0000000000000366 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002600 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002200 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002df0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000370 mem 0x0000000080002600 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002df0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002608 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002208 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002df8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000037a mem 0x0000000080002608 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000037a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002df8 0x000000000000037a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002610 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002210 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e00 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000384 mem 0x0000000080002610 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000384 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e00 0x0000000000000384 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002618 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002218 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e08 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000038e mem 0x0000000080002618 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e08 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002620 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002220 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e10 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000398 mem 0x0000000080002620 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002628 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002228 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e18 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003a2 mem 0x0000000080002628 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002228 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002630 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002230 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e20 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003ac mem 0x0000000080002630 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000003ac +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e20 0x00000000000003ac +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002638 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002238 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e28 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003b6 mem 0x0000000080002638 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000003b6 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e28 0x00000000000003b6 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002640 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002240 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e30 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003c0 mem 0x0000000080002640 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002648 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002248 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e38 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003ca mem 0x0000000080002648 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e38 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002650 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002250 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e40 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003d4 mem 0x0000000080002650 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000003d4 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e40 0x00000000000003d4 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002658 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002258 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e48 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003de mem 0x0000000080002658 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002258 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000003de +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e48 0x00000000000003de +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002660 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002260 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e50 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003e8 mem 0x0000000080002660 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e50 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002668 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002268 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e58 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003f2 mem 0x0000000080002668 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002268 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002670 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002270 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e60 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000003fc mem 0x0000000080002670 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000003fc +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e60 0x00000000000003fc +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002678 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002278 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e68 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000406 mem 0x0000000080002678 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e68 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002680 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002280 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e70 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000410 mem 0x0000000080002680 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002280 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002688 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002288 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e78 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000041a mem 0x0000000080002688 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002288 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000041a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e78 0x000000000000041a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002690 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002290 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e80 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000424 mem 0x0000000080002690 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002698 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002298 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e88 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000042e mem 0x0000000080002698 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000042e +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e88 0x000000000000042e +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026a0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022a0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e90 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000438 mem 0x00000000800026a0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000438 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e90 0x0000000000000438 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026a8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022a8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002e98 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000442 mem 0x00000000800026a8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022a8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026b0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022b0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ea0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000044c mem 0x00000000800026b0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000044c +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ea0 0x000000000000044c +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026b8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022b8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ea8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000456 mem 0x00000000800026b8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ea8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026c0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022c0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002eb0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000460 mem 0x00000000800026c0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022c0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026c8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022c8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002eb8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000046a mem 0x00000000800026c8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022c8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x000000000000046a +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002eb8 0x000000000000046a +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026d0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022d0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ec0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000474 mem 0x00000000800026d0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ec0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026d8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022d8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ec8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000047e mem 0x00000000800026d8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022d8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ec8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026e0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022e0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ed0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000488 mem 0x00000000800026e0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000488 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ed0 0x0000000000000488 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026e8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022e8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ed8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000492 mem 0x00000000800026e8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022e8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000492 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ed8 0x0000000000000492 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026f0 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022f0 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ee0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x000000000000049c mem 0x00000000800026f0 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x00000000800022f0 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ee0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x00000000800026f8 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x00000000800022f8 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ee8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004a6 mem 0x00000000800026f8 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x00000000800022f8 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000004a6 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ee8 0x00000000000004a6 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002700 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002300 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ef0 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004b0 mem 0x0000000080002700 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ef0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002708 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002308 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002ef8 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004ba mem 0x0000000080002708 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ef8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002710 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002310 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f00 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004c4 mem 0x0000000080002710 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002310 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f00 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002718 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002318 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f08 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004ce mem 0x0000000080002718 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000004ce +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f08 0x00000000000004ce +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002720 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002320 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f10 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004d8 mem 0x0000000080002720 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000004d8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f10 0x00000000000004d8 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002728 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002328 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f18 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004e2 mem 0x0000000080002728 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002328 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000004e2 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f18 0x00000000000004e2 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002730 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002330 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f20 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004ec mem 0x0000000080002730 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002330 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002738 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002338 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f28 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x00000000000004f6 mem 0x0000000080002738 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000000 mem 0x0000000080002338 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x00000000000004f6 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f28 0x00000000000004f6 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002740 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002340 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ea0 (0x20a7e8b3) sh3add a7, a5, a0 +core 0: 3 0x0000000080001ea0 (0x20a7e8b3) x17 0x0000000080002f30 +core 0: 0x0000000080001ea4 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001ea4 (0x00083703) x14 0x0000000000000500 mem 0x0000000080002740 +core 0: 0x0000000080001ea8 (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001ea8 (0x0005b303) x6 0x0000000000000001 mem 0x0000000080002340 +core 0: 0x0000000080001eac (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001eac (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001eb0 (0x0e677733) czero.nez a4, a4, t1 +core 0: 3 0x0000000080001eb0 (0x0e677733) x14 0x0000000000000000 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001eb8 (0x00880813) x16 0x0000000080002748 +core 0: 0x0000000080001ebc (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001ebc (0x00858593) x11 0x0000000080002348 +core 0: 0x0000000080001ec0 (0xffc790e3) bne a5, t3, pc - 32 +core 0: 3 0x0000000080001ec0 (0xffc790e3) +core 0: 0x0000000080001ec4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ec4 (0xc00027f3) x15 0x00000000000010b4 +core 0: 0x0000000080001ec8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ec8 (0xc00027f3) x15 0x00000000000010bd +core 0: 0x0000000080001ecc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ecc (0x00000597) x11 0x0000000080001ecc +core 0: 0x0000000080001ed0 (0x47c58593) addi a1, a1, 1148 +core 0: 3 0x0000000080001ed0 (0x47c58593) x11 0x0000000080002348 +core 0: 0x0000000080001ed4 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001ed4 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x08000e93) li t4, 128 +core 0: 3 0x0000000080001ed8 (0x08000e93) x29 0x0000000000000080 +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000000a mem 0x0000000080002348 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000000a mem 0x0000000080002348 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b38 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000000a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000001 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000000a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000000a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000000a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b38 0x000000000000000a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002350 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000014 mem 0x0000000080002350 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000014 mem 0x0000000080002350 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b40 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000014 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000002 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000014 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000014 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000014 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b40 0x0000000000000014 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002358 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000001e mem 0x0000000080002358 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000001e mem 0x0000000080002358 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b48 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000001e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000003 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000001e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000001e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000001e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b48 0x000000000000001e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002360 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000028 mem 0x0000000080002360 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000028 mem 0x0000000080002360 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b50 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001f60 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000028 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000004 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000028 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000028 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000028 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b50 0x0000000000000028 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002368 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000032 mem 0x0000000080002368 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000032 mem 0x0000000080002368 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b58 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f68 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000032 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000005 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000032 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000032 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000032 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b58 0x0000000000000032 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002370 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000003c mem 0x0000000080002370 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000003c mem 0x0000000080002370 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b60 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000003c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000006 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000003c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000003c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000003c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b60 0x000000000000003c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002378 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000046 mem 0x0000000080002378 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000046 mem 0x0000000080002378 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b68 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001f78 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000046 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000007 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000046 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000046 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000046 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b68 0x0000000000000046 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002380 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000050 mem 0x0000000080002380 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000050 mem 0x0000000080002380 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b70 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f80 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000050 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000008 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000050 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000050 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000050 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b70 0x0000000000000050 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002388 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000005a mem 0x0000000080002388 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000005a mem 0x0000000080002388 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b78 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001f88 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000005a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000009 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000005a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000005a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000005a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b78 0x000000000000005a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002390 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000064 mem 0x0000000080002390 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000064 mem 0x0000000080002390 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b80 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000064 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000064 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000064 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000064 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b80 0x0000000000000064 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002398 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000006e mem 0x0000000080002398 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000006e mem 0x0000000080002398 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b88 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000006e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000006e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000006e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000006e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b88 0x000000000000006e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023a0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000078 mem 0x00000000800023a0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000078 mem 0x00000000800023a0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b90 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000078 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000078 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000078 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000078 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b90 0x0000000000000078 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023a8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000082 mem 0x00000000800023a8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000082 mem 0x00000000800023a8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002b98 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000082 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000082 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000082 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000082 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002b98 0x0000000000000082 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023b0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000008c mem 0x00000000800023b0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000008c mem 0x00000000800023b0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ba0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001fb0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000008c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000008c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000008c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000008c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ba0 0x000000000000008c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023b8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000096 mem 0x00000000800023b8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000096 mem 0x00000000800023b8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ba8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001fb8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000096 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000000f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000096 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000096 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000096 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ba8 0x0000000000000096 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023c0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000a0 mem 0x00000000800023c0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000a0 mem 0x00000000800023c0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bb0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000a0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000010 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000a0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000000a0 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000a0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bb0 0x00000000000000a0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023c8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000aa mem 0x00000000800023c8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000aa mem 0x00000000800023c8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bb8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001fc8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000aa +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000011 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000aa +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000000aa +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000aa +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bb8 0x00000000000000aa +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023d0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000b4 mem 0x00000000800023d0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000b4 mem 0x00000000800023d0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bc0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000b4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000012 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000b4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000000b4 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000b4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bc0 0x00000000000000b4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023d8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000be mem 0x00000000800023d8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000be mem 0x00000000800023d8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bc8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001fd8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000be +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000013 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000be +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000000be +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000be +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bc8 0x00000000000000be +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023e0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000c8 mem 0x00000000800023e0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000c8 mem 0x00000000800023e0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bd0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000c8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000014 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000c8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000000c8 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000c8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bd0 0x00000000000000c8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023e8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000d2 mem 0x00000000800023e8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000d2 mem 0x00000000800023e8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bd8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000d2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000015 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000d2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000000d2 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000d2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bd8 0x00000000000000d2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023f0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000dc mem 0x00000000800023f0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000dc mem 0x00000000800023f0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002be0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000dc +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000016 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000dc +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000000dc +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000dc +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002be0 0x00000000000000dc +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800023f8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000e6 mem 0x00000000800023f8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000e6 mem 0x00000000800023f8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002be8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000e6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000017 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000e6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000000e6 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000e6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002be8 0x00000000000000e6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002400 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000f0 mem 0x0000000080002400 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000f0 mem 0x0000000080002400 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bf0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000f0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000018 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000f0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000000f0 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000f0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bf0 0x00000000000000f0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002408 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000000fa mem 0x0000000080002408 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000000fa mem 0x0000000080002408 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002bf8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000000fa +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000019 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000000fa +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000000fa +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000000fa +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002bf8 0x00000000000000fa +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002410 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000104 mem 0x0000000080002410 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000104 mem 0x0000000080002410 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c00 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000104 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000104 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000104 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000104 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c00 0x0000000000000104 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002418 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000010e mem 0x0000000080002418 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000010e mem 0x0000000080002418 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c08 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000010e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000010e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000010e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000010e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c08 0x000000000000010e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002420 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000118 mem 0x0000000080002420 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000118 mem 0x0000000080002420 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c10 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000118 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000118 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000118 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000118 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c10 0x0000000000000118 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002428 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000122 mem 0x0000000080002428 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000122 mem 0x0000000080002428 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c18 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002028 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000122 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000122 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000122 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000122 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c18 0x0000000000000122 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002430 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000012c mem 0x0000000080002430 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000012c mem 0x0000000080002430 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c20 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000012c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000012c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000012c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000012c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c20 0x000000000000012c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002438 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000136 mem 0x0000000080002438 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000136 mem 0x0000000080002438 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c28 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000136 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000001f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000136 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000136 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000136 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c28 0x0000000000000136 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002440 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000140 mem 0x0000000080002440 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000140 mem 0x0000000080002440 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c30 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000140 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000020 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000140 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000140 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000140 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c30 0x0000000000000140 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002448 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000014a mem 0x0000000080002448 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000014a mem 0x0000000080002448 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c38 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000014a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000021 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000014a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000014a +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000014a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c38 0x000000000000014a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002450 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000154 mem 0x0000000080002450 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000154 mem 0x0000000080002450 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c40 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000154 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000022 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000154 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000154 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000154 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c40 0x0000000000000154 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002458 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000015e mem 0x0000000080002458 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000015e mem 0x0000000080002458 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c48 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002058 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000015e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000023 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000015e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000015e +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000015e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c48 0x000000000000015e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002460 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000168 mem 0x0000000080002460 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000168 mem 0x0000000080002460 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c50 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000168 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000024 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000168 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000168 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000168 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c50 0x0000000000000168 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002468 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000172 mem 0x0000000080002468 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000172 mem 0x0000000080002468 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c58 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002068 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000172 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000025 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000172 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000172 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000172 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c58 0x0000000000000172 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002470 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000017c mem 0x0000000080002470 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000017c mem 0x0000000080002470 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c60 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000017c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000026 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000017c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000017c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000017c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c60 0x000000000000017c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002478 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000186 mem 0x0000000080002478 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000186 mem 0x0000000080002478 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c68 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000186 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000027 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000186 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000186 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000186 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c68 0x0000000000000186 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002480 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000190 mem 0x0000000080002480 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000190 mem 0x0000000080002480 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c70 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002080 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000190 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000028 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000190 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000190 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000190 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c70 0x0000000000000190 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002488 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000019a mem 0x0000000080002488 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000019a mem 0x0000000080002488 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c78 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002088 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000019a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000029 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000019a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000019a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000019a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c78 0x000000000000019a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002490 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001a4 mem 0x0000000080002490 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001a4 mem 0x0000000080002490 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c80 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001a4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001a4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001a4 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001a4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c80 0x00000000000001a4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002498 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001ae mem 0x0000000080002498 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001ae mem 0x0000000080002498 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c88 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001ae +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001ae +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000001ae +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001ae +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c88 0x00000000000001ae +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024a0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001b8 mem 0x00000000800024a0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001b8 mem 0x00000000800024a0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c90 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001b8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001b8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000001b8 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001b8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c90 0x00000000000001b8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024a8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001c2 mem 0x00000000800024a8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001c2 mem 0x00000000800024a8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002c98 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020a8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001c2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001c2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001c2 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001c2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002c98 0x00000000000001c2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024b0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001cc mem 0x00000000800024b0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001cc mem 0x00000000800024b0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ca0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001cc +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001cc +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000001cc +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001cc +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ca0 0x00000000000001cc +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024b8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001d6 mem 0x00000000800024b8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001d6 mem 0x00000000800024b8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ca8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001d6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000002f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001d6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001d6 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001d6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ca8 0x00000000000001d6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024c0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001e0 mem 0x00000000800024c0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001e0 mem 0x00000000800024c0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cb0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020c0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001e0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000030 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001e0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001e0 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001e0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cb0 0x00000000000001e0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024c8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001ea mem 0x00000000800024c8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001ea mem 0x00000000800024c8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cb8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020c8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001ea +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000031 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001ea +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000001ea +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001ea +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cb8 0x00000000000001ea +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024d0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001f4 mem 0x00000000800024d0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001f4 mem 0x00000000800024d0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cc0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001f4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000032 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001f4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001f4 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001f4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cc0 0x00000000000001f4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024d8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000001fe mem 0x00000000800024d8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000001fe mem 0x00000000800024d8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cc8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000001fe +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000033 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000001fe +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000001fe +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000001fe +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cc8 0x00000000000001fe +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024e0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000208 mem 0x00000000800024e0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000208 mem 0x00000000800024e0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cd0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000208 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000034 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000208 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000208 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000208 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cd0 0x0000000000000208 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024e8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000212 mem 0x00000000800024e8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000212 mem 0x00000000800024e8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cd8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000212 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000035 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000212 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000212 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000212 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cd8 0x0000000000000212 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024f0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000021c mem 0x00000000800024f0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000021c mem 0x00000000800024f0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ce0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000021c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000036 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000021c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000021c +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000021c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ce0 0x000000000000021c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800024f8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000226 mem 0x00000000800024f8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000226 mem 0x00000000800024f8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ce8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000226 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000037 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000226 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000226 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000226 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ce8 0x0000000000000226 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002500 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000230 mem 0x0000000080002500 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000230 mem 0x0000000080002500 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cf0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000230 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000038 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000230 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000230 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000230 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cf0 0x0000000000000230 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002508 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000023a mem 0x0000000080002508 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000023a mem 0x0000000080002508 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002cf8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000023a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000039 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000023a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000023a +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000023a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002cf8 0x000000000000023a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002510 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000244 mem 0x0000000080002510 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000244 mem 0x0000000080002510 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d00 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002110 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000244 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000244 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000244 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000244 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d00 0x0000000000000244 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002518 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000024e mem 0x0000000080002518 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000024e mem 0x0000000080002518 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d08 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000024e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000024e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000024e +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000024e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d08 0x000000000000024e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002520 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000258 mem 0x0000000080002520 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000258 mem 0x0000000080002520 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d10 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000258 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000258 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000258 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000258 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d10 0x0000000000000258 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002528 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000262 mem 0x0000000080002528 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000262 mem 0x0000000080002528 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d18 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002128 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000262 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000262 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000262 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000262 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d18 0x0000000000000262 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002530 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000026c mem 0x0000000080002530 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000026c mem 0x0000000080002530 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d20 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002130 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000026c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000026c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000026c +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000026c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d20 0x000000000000026c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002538 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000276 mem 0x0000000080002538 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000276 mem 0x0000000080002538 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d28 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000276 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000003f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000276 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000276 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000276 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d28 0x0000000000000276 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002540 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000280 mem 0x0000000080002540 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000280 mem 0x0000000080002540 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d30 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000040 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000280 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000280 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000280 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d30 0x0000000000000280 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002548 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000028a mem 0x0000000080002548 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000028a mem 0x0000000080002548 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d38 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000028a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000041 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000028a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000028a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000028a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d38 0x000000000000028a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002550 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000294 mem 0x0000000080002550 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000294 mem 0x0000000080002550 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d40 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000294 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000042 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000294 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000294 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000294 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d40 0x0000000000000294 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002558 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000029e mem 0x0000000080002558 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000029e mem 0x0000000080002558 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d48 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000029e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000043 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000029e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000029e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000029e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d48 0x000000000000029e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002560 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002a8 mem 0x0000000080002560 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002a8 mem 0x0000000080002560 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d50 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002160 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002a8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000044 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002a8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000002a8 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002a8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d50 0x00000000000002a8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002568 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002b2 mem 0x0000000080002568 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002b2 mem 0x0000000080002568 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d58 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002168 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002b2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000045 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002b2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000002b2 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002b2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d58 0x00000000000002b2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002570 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002bc mem 0x0000000080002570 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002bc mem 0x0000000080002570 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d60 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002bc +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000046 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002bc +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000002bc +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002bc +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d60 0x00000000000002bc +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002578 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002c6 mem 0x0000000080002578 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002c6 mem 0x0000000080002578 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d68 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002c6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000047 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002c6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000002c6 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002c6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d68 0x00000000000002c6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002580 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002d0 mem 0x0000000080002580 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002d0 mem 0x0000000080002580 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d70 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002180 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002d0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000048 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002d0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000002d0 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002d0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d70 0x00000000000002d0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002588 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002da mem 0x0000000080002588 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002da mem 0x0000000080002588 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d78 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002188 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002da +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000049 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002da +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000002da +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002da +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d78 0x00000000000002da +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002590 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002e4 mem 0x0000000080002590 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002e4 mem 0x0000000080002590 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d80 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002e4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002e4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000002e4 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002e4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d80 0x00000000000002e4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002598 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002ee mem 0x0000000080002598 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002ee mem 0x0000000080002598 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d88 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002ee +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002ee +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000002ee +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002ee +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d88 0x00000000000002ee +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025a0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000002f8 mem 0x00000000800025a0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000002f8 mem 0x00000000800025a0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d90 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000002f8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000002f8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000002f8 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000002f8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d90 0x00000000000002f8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025a8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000302 mem 0x00000000800025a8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000302 mem 0x00000000800025a8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002d98 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000302 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000302 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000302 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000302 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002d98 0x0000000000000302 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025b0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000030c mem 0x00000000800025b0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000030c mem 0x00000000800025b0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002da0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021b0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000030c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000030c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000030c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000030c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002da0 0x000000000000030c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025b8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000316 mem 0x00000000800025b8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000316 mem 0x00000000800025b8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002da8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021b8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000316 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000004f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000316 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000316 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000316 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002da8 0x0000000000000316 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025c0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000320 mem 0x00000000800025c0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000320 mem 0x00000000800025c0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002db0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000320 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000050 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000320 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000320 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000320 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002db0 0x0000000000000320 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025c8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000032a mem 0x00000000800025c8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000032a mem 0x00000000800025c8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002db8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021c8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000032a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000051 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000032a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000032a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000032a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002db8 0x000000000000032a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025d0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000334 mem 0x00000000800025d0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000334 mem 0x00000000800025d0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002dc0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000334 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000052 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000334 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000334 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000334 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002dc0 0x0000000000000334 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025d8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000033e mem 0x00000000800025d8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000033e mem 0x00000000800025d8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002dc8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021d8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000033e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000053 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000033e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000033e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000033e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002dc8 0x000000000000033e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025e0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000348 mem 0x00000000800025e0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000348 mem 0x00000000800025e0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002dd0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000348 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000054 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000348 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000348 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000348 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002dd0 0x0000000000000348 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025e8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000352 mem 0x00000000800025e8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000352 mem 0x00000000800025e8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002dd8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000352 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000055 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000352 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000352 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000352 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002dd8 0x0000000000000352 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025f0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000035c mem 0x00000000800025f0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000035c mem 0x00000000800025f0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002de0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000035c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000056 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000035c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000035c +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000035c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002de0 0x000000000000035c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800025f8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000366 mem 0x00000000800025f8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000366 mem 0x00000000800025f8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002de8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000366 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000057 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000366 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000366 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000366 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002de8 0x0000000000000366 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002600 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000370 mem 0x0000000080002600 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000370 mem 0x0000000080002600 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002df0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000370 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000058 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000370 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000370 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000370 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002df0 0x0000000000000370 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002608 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000037a mem 0x0000000080002608 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000037a mem 0x0000000080002608 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002df8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000037a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000059 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000037a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000037a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000037a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002df8 0x000000000000037a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002610 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000384 mem 0x0000000080002610 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000384 mem 0x0000000080002610 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e00 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000384 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000384 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000384 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000384 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e00 0x0000000000000384 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002618 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000038e mem 0x0000000080002618 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000038e mem 0x0000000080002618 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e08 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000038e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000038e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000038e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000038e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e08 0x000000000000038e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002620 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000398 mem 0x0000000080002620 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000398 mem 0x0000000080002620 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e10 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000398 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000398 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000398 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000398 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e10 0x0000000000000398 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002628 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003a2 mem 0x0000000080002628 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003a2 mem 0x0000000080002628 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e18 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002228 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003a2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003a2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000003a2 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003a2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e18 0x00000000000003a2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002630 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003ac mem 0x0000000080002630 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003ac mem 0x0000000080002630 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e20 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003ac +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003ac +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000003ac +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003ac +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e20 0x00000000000003ac +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002638 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003b6 mem 0x0000000080002638 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003b6 mem 0x0000000080002638 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e28 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003b6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000005f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003b6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000003b6 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003b6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e28 0x00000000000003b6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002640 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003c0 mem 0x0000000080002640 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003c0 mem 0x0000000080002640 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e30 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003c0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000060 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003c0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000003c0 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003c0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e30 0x00000000000003c0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002648 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003ca mem 0x0000000080002648 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003ca mem 0x0000000080002648 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e38 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003ca +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000061 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003ca +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000003ca +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003ca +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e38 0x00000000000003ca +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002650 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003d4 mem 0x0000000080002650 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003d4 mem 0x0000000080002650 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e40 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003d4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000062 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003d4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000003d4 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003d4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e40 0x00000000000003d4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002658 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003de mem 0x0000000080002658 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003de mem 0x0000000080002658 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e48 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002258 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003de +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000063 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003de +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000003de +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003de +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e48 0x00000000000003de +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002660 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003e8 mem 0x0000000080002660 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003e8 mem 0x0000000080002660 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e50 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003e8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000064 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003e8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000003e8 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003e8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e50 0x00000000000003e8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002668 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003f2 mem 0x0000000080002668 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003f2 mem 0x0000000080002668 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e58 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002268 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003f2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000065 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003f2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000003f2 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003f2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e58 0x00000000000003f2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002670 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000003fc mem 0x0000000080002670 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000003fc mem 0x0000000080002670 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e60 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000003fc +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000066 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000003fc +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000003fc +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000003fc +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e60 0x00000000000003fc +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002678 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000406 mem 0x0000000080002678 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000406 mem 0x0000000080002678 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e68 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000406 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000067 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000406 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000406 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000406 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e68 0x0000000000000406 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002680 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000410 mem 0x0000000080002680 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000410 mem 0x0000000080002680 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e70 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002280 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000410 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000068 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000410 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000410 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000410 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e70 0x0000000000000410 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002688 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000041a mem 0x0000000080002688 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000041a mem 0x0000000080002688 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e78 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002288 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000041a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000069 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000041a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000041a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000041a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e78 0x000000000000041a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002690 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000424 mem 0x0000000080002690 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000424 mem 0x0000000080002690 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e80 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000424 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000424 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000424 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000424 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e80 0x0000000000000424 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002698 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000042e mem 0x0000000080002698 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000042e mem 0x0000000080002698 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e88 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000042e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000042e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000042e +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000042e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e88 0x000000000000042e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026a0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000438 mem 0x00000000800026a0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000438 mem 0x00000000800026a0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e90 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000438 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000438 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000438 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000438 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e90 0x0000000000000438 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026a8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000442 mem 0x00000000800026a8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000442 mem 0x00000000800026a8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002e98 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022a8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000442 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000442 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000442 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000442 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002e98 0x0000000000000442 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026b0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000044c mem 0x00000000800026b0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000044c mem 0x00000000800026b0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ea0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000044c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000044c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000044c +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000044c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ea0 0x000000000000044c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026b8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000456 mem 0x00000000800026b8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000456 mem 0x00000000800026b8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ea8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000456 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000006f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000456 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000456 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000456 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ea8 0x0000000000000456 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026c0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000460 mem 0x00000000800026c0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000460 mem 0x00000000800026c0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002eb0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022c0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000460 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000070 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000460 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000460 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000460 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002eb0 0x0000000000000460 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026c8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000046a mem 0x00000000800026c8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000046a mem 0x00000000800026c8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002eb8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022c8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000046a +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000071 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000046a +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x000000000000046a +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000046a +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002eb8 0x000000000000046a +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026d0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000474 mem 0x00000000800026d0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000474 mem 0x00000000800026d0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ec0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000474 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000072 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000474 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000474 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000474 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ec0 0x0000000000000474 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026d8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026d8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022d8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000047e mem 0x00000000800026d8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000047e mem 0x00000000800026d8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ec8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022d8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000047e +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000073 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000047e +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000047e +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000047e +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ec8 0x000000000000047e +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026e0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026e0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022e0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000488 mem 0x00000000800026e0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000488 mem 0x00000000800026e0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ed0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000488 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000074 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000488 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000488 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000488 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ed0 0x0000000000000488 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026e8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026e8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022e8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000492 mem 0x00000000800026e8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000492 mem 0x00000000800026e8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ed8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022e8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000492 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000075 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000492 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000492 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000492 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ed8 0x0000000000000492 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026f0 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026f0 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022f0 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x000000000000049c mem 0x00000000800026f0 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x000000000000049c mem 0x00000000800026f0 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ee0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x00000000800022f0 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x000000000000049c +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000076 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x000000000000049c +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x000000000000049c +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x000000000000049c +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ee0 0x000000000000049c +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800026f8 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x00000000800026f8 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x00000000800022f8 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004a6 mem 0x00000000800026f8 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004a6 mem 0x00000000800026f8 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ee8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x00000000800022f8 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004a6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000077 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004a6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000004a6 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004a6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ee8 0x00000000000004a6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002700 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002700 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002300 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004b0 mem 0x0000000080002700 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004b0 mem 0x0000000080002700 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ef0 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004b0 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000078 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004b0 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000004b0 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004b0 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ef0 0x00000000000004b0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002708 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002708 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002308 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004ba mem 0x0000000080002708 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004ba mem 0x0000000080002708 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002ef8 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004ba +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000079 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004ba +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000004ba +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004ba +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002ef8 0x00000000000004ba +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002710 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002710 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002310 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004c4 mem 0x0000000080002710 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004c4 mem 0x0000000080002710 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f00 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002310 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004c4 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007a +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004c4 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000004c4 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004c4 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f00 0x00000000000004c4 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002718 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002718 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002318 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004ce mem 0x0000000080002718 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004ce mem 0x0000000080002718 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f08 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004ce +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007b +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004ce +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000004ce +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004ce +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f08 0x00000000000004ce +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002720 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002720 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002320 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004d8 mem 0x0000000080002720 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004d8 mem 0x0000000080002720 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f10 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004d8 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007c +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004d8 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000004d8 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004d8 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f10 0x00000000000004d8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002728 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002728 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002328 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004e2 mem 0x0000000080002728 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004e2 mem 0x0000000080002728 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f18 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002328 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004e2 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007d +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004e2 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000004e2 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004e2 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f18 0x00000000000004e2 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002730 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002730 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002330 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004ec mem 0x0000000080002730 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004ec mem 0x0000000080002730 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f20 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002330 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004ec +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007e +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004ec +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x00000000000004ec +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004ec +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f20 0x00000000000004ec +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002738 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002738 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002338 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x00000000000004f6 mem 0x0000000080002738 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x00000000000004f6 mem 0x0000000080002738 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f28 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000000 mem 0x0000000080002338 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x00000000000004f6 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x000000000000007f +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x00000000000004f6 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000000 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x00000000000004f6 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x00000000000004f6 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f28 0x00000000000004f6 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002740 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002740 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002340 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001edc (0x0005b303) ld t1, 0(a1) +core 0: 3 0x0000000080001edc (0x0005b303) x6 0x0000000000000500 mem 0x0000000080002740 +core 0: 0x0000000080001ee0 (0x00063783) ld a5, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063783) x15 0x0000000000000500 mem 0x0000000080002740 +core 0: 0x0000000080001ee4 (0x20a76e33) sh3add t3, a4, a0 +core 0: 3 0x0000000080001ee4 (0x20a76e33) x28 0x0000000080002f30 +core 0: 0x0000000080001ee8 (0x0006b803) ld a6, 0(a3) +core 0: 3 0x0000000080001ee8 (0x0006b803) x16 0x0000000000000001 mem 0x0000000080002340 +core 0: 0x0000000080001eec (0x0067e8b3) or a7, a5, t1 +core 0: 3 0x0000000080001eec (0x0067e8b3) x17 0x0000000000000500 +core 0: 0x0000000080001ef0 (0x0017071b) addiw a4, a4, 1 +core 0: 3 0x0000000080001ef0 (0x0017071b) x14 0x0000000000000080 +core 0: 0x0000000080001ef4 (0x0067f7b3) and a5, a5, t1 +core 0: 3 0x0000000080001ef4 (0x0067f7b3) x15 0x0000000000000500 +core 0: 0x0000000080001ef8 (0x0f08d333) czero.eqz t1, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0f08d333) x6 0x0000000000000500 +core 0: 0x0000000080001efc (0x0f07ff33) czero.nez t5, a5, a6 +core 0: 3 0x0000000080001efc (0x0f07ff33) x30 0x0000000000000000 +core 0: 0x0000000080001f00 (0x01e36333) or t1, t1, t5 +core 0: 3 0x0000000080001f00 (0x01e36333) x6 0x0000000000000500 +core 0: 0x0000000080001f04 (0x006e3023) sd t1, 0(t3) +core 0: 3 0x0000000080001f04 (0x006e3023) mem 0x0000000080002f30 0x0000000000000500 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002748 +core 0: 0x0000000080001f0c (0x00858593) addi a1, a1, 8 +core 0: 3 0x0000000080001f0c (0x00858593) x11 0x0000000080002748 +core 0: 0x0000000080001f10 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f10 (0x00868693) x13 0x0000000080002348 +core 0: 0x0000000080001f14 (0xfdd714e3) bne a4, t4, pc - 56 +core 0: 3 0x0000000080001f14 (0xfdd714e3) +core 0: 0x0000000080001f18 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f18 (0xc00027f3) x15 0x000000000000186e +core 0: 0x0000000080001f1c (0x00000513) li a0, 0 +core 0: 3 0x0000000080001f1c (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00008067) ret +core 0: 3 0x0000000080001f20 (0x00008067) +core 0: 0x0000000080001cc8 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cc8 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ccc (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ccc (0x000a0493) x9 0x0000000080022d40 +core 0: 0x0000000080001cd0 (0xcf718413) addi s0, gp, -777 +core 0: 3 0x0000000080001cd0 (0xcf718413) x8 0x0000000080003028 +core 0: 0x0000000080001cd4 (0xc0718913) addi s2, gp, -1017 +core 0: 3 0x0000000080001cd4 (0xc0718913) x18 0x0000000080002f38 +core 0: 0x0000000080001cd8 (0xde718993) addi s3, gp, -537 +core 0: 3 0x0000000080001cd8 (0xde718993) x19 0x0000000080003118 +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f38 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003028 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d40 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 core 0: >>>> sprintf core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 -core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 -core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) -core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fa8 +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003028 core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) -core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022cc0 +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d40 core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) -core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) -core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 -core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022cc0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d40 core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 -core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 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: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022cb8 core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 -core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) -core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) -core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000000000e28 +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x000000000000186e core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) -core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000500 +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000080 core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) -core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) -core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) -core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 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: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022b50 core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) -core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cc0 +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d40 core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) -core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cc0 +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d40 core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) -core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002eb8 +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f38 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) -core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) -core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) -core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) -core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) -core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) -core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) -core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) -core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002b28 core 0: 0x000000008000103c (0x00068a93) mv s5, a3 -core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 core 0: 0x0000000080001040 (0x00058913) mv s2, a1 -core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 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: 0x0000000080001050 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b28 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002b29 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b29 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -2750,19 +9637,19 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b2a 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: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002888 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 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: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022ce0 core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 @@ -2772,13 +9659,13 @@ 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: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022ce8 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: 0x0000000080001378 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 core 0: 0x000000008000137c (0x02800513) li a0, 40 core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 @@ -2788,16514 +9675,9494 @@ 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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc0 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d40 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: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d40 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d40 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f38 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d4b mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d4b 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d4b mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003030 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f40 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d4b +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f40 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003030 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d4b +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003030 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d4b +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d4b +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d4b +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d4b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d4b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d4b mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d4b mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f40 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d56 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d56 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d56 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003038 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f48 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d56 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f48 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003038 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d56 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003038 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d56 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d56 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d56 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d56 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d56 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d56 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d56 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f48 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d61 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d61 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d61 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003040 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f50 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d61 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f50 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003040 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d61 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003040 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d61 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d61 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d61 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d61 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d61 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d61 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d61 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f50 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d6c mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d6c 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d6c mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003048 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f58 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d6c +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f58 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003048 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d6c +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003048 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d6c +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d6c +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d6c +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d6c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d6c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d6c mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d6c mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f58 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d77 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d77 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d77 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003050 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f60 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d77 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f60 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003050 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d77 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003050 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d77 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d77 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d77 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d77 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d77 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d77 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d77 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f60 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d82 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d82 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d82 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003058 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f68 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d82 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003058 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d82 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003058 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d82 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d82 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d82 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d82 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d82 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d82 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d82 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f68 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d8d mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d8d 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d8d mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003060 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f70 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d8d +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f70 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003060 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d8d +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003060 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d8d +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d8d +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d8d +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d8d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d8d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d8d mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d8d mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f70 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d98 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d98 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d98 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003068 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f78 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022d98 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f78 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003068 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022d98 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003068 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d98 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d98 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d98 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d98 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d98 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d98 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d98 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f78 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022da3 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022da3 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022da3 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003070 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f80 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022da3 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f80 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003070 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022da3 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003070 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022da3 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022da3 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022da3 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022da3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022da3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022daa mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022dab mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022dac mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022da3 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022da3 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f80 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dae mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dae 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dae mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003078 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f88 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022dae +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f88 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003078 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022dae +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003078 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dae +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dae +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dae +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dae +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dae +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dae mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dae mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f88 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022db9 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022db9 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022db9 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003080 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f90 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022db9 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f90 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003080 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022db9 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003080 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022db9 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022db9 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022db9 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022db9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022db9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022db9 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022db9 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f90 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dc4 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dc4 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003088 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002f98 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022dc4 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f98 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003088 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022dc4 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003088 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dc4 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dc4 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dc4 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dc4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dc4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f98 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022dca mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dc4 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dc4 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dcf mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dcf 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dcf mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003090 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fa0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022dcf +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003090 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022dcf +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003090 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dcf +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dcf +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dcf +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dcf +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dcf +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fa0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dcf mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dcf mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dda mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dda 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dda mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003098 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fa8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022dda +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003098 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022dda +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003098 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dda +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dda +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dda +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dda +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dda +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fa8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dda mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dda mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022de5 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022de5 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022de5 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080003098 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030a0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fb0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022de5 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022de5 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030a0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022de5 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022de5 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022de5 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022de5 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022de5 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fb0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022deb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022dec mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022ded mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022dee mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002aaa +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022de5 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022de5 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fb0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022df0 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022df0 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022df0 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030a0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030a8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fb8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022df0 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022df0 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030a8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022df0 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022df0 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022df0 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022df0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022df0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fb8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 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: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19303,26 +19170,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df5 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df6 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfa +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002826 +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19330,92 +19197,92 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2a core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df6 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df7 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfb +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df7 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df7 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df8 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfc +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df8 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df9 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfd +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df9 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002b2e core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b2e core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -19427,13 +19294,13 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b2f 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: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002890 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 core 0: 0x00000000800010a8 (0x00078067) jr a5 @@ -19445,25 +19312,25 @@ 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: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022cf0 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: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022ce8 core 0: 0x000000008000129c (0x00078a93) mv s5, a5 -core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 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: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022b54 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: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022b50 0x00000000 core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 core 0: 3 0x00000000800011d0 (0x16d76463) core 0: 0x0000000080001338 (0x00000c13) li s8, 0 @@ -19473,19 +19340,19 @@ 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: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022b50 core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 -core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c 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: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b50 core 0: 0x0000000080001228 (0x00090593) mv a1, s2 -core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 -core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 @@ -19498,15 +19365,15 @@ 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfe +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfa core 0: 0x00000000800013f0 (0x00008067) ret core 0: 3 0x00000000800013f0 (0x00008067) core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 @@ -19514,196 +19381,196 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dff +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) -core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df4 mem 0x0000000080022c20 +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df0 mem 0x0000000080022ca0 core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) -core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df4 mem 0x0000000080022c18 +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df0 mem 0x0000000080022c98 core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) -core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022c10 +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fb8 mem 0x0000000080022c90 core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) -core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) -core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) -core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) -core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) -core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) -core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) -core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 -core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 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: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) -core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dff 0x00 +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dfb 0x00 core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) -core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dff mem 0x0000000080022c38 +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) -core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 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: 3 0x0000000080001aa0 (0x02013403) x8 0x00000000800030a8 mem 0x0000000080022cd0 core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 -core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 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: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030b0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fc0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022dfb +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022dfb +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 core 0: >>>> sprintf core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 -core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 -core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) -core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003090 +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030b0 core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) -core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dff +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dfb core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) -core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) -core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 -core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dff +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dfb core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 -core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 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: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022cb8 core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 -core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) -core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) -core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dff +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dfb core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) -core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) -core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) -core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) -core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 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: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022b50 core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) -core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dff +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dfb core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) -core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dff +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dfb core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) -core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002fa0 +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fc0 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) -core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) -core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) -core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) -core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) -core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) -core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) -core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) -core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002b28 core 0: 0x000000008000103c (0x00068a93) mv s5, a3 -core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 core 0: 0x0000000080001040 (0x00058913) mv s2, a1 -core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 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: 0x0000000080001050 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b28 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002b29 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b29 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -19715,19 +19582,19 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b2a 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: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002888 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 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: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022ce0 core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 @@ -19737,13 +19604,13 @@ 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: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022ce8 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: 0x0000000080001378 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 core 0: 0x000000008000137c (0x02800513) li a0, 40 core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 @@ -19753,26 +19620,26 @@ 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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e00 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfc 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x00000000800028a1 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19780,26 +19647,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e01 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfd 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800028a2 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19807,26 +19674,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e02 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfe 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a3 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19834,26 +19701,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e03 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dff 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x00000000800028a4 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19861,26 +19728,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e04 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000029 mem 0x0000000080002825 +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800028a5 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19888,26 +19755,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e05 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002826 +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800028a6 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -19915,92 +19782,92 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2a core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e06 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e02 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b2b core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e07 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e07 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e03 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b2c core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e08 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e08 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e04 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b2d 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002b2e core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b2e core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -20012,13 +19879,13 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b2f 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: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002890 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 core 0: 0x00000000800010a8 (0x00078067) jr a5 @@ -20030,25 +19897,25 @@ 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: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022cf0 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: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022ce8 core 0: 0x000000008000129c (0x00078a93) mv s5, a5 -core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 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: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022b54 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: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022b50 0x00000000 core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 core 0: 3 0x00000000800011d0 (0x16d76463) core 0: 0x0000000080001338 (0x00000c13) li s8, 0 @@ -20058,19 +19925,19 @@ 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: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022b50 core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 -core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c 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: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b50 core 0: 0x0000000080001228 (0x00090593) mv a1, s2 -core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 -core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 @@ -20083,15 +19950,15 @@ 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e09 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e09 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e05 core 0: 0x00000000800013f0 (0x00008067) ret core 0: 3 0x00000000800013f0 (0x00008067) core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 @@ -20099,2101 +19966,9121 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b2f core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0a +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e0a +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b30 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022ca8 core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) -core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dff mem 0x0000000080022c20 +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dfb mem 0x0000000080022ca0 core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) -core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dff mem 0x0000000080022c18 +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dfb mem 0x0000000080022c98 core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) -core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c10 +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fc0 mem 0x0000000080022c90 core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) -core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) -core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) -core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) -core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) -core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) -core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) -core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 -core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 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: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e06 mem 0x0000000080022cb8 core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) -core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e0a 0x00 +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e06 0x00 core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) -core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e06 mem 0x0000000080022cb8 core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) -core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 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: 3 0x0000000080001aa0 (0x02013403) x8 0x00000000800030b0 mem 0x0000000080022cd0 core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 -core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 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: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030b8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fc8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e06 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e06 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030b8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e06 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e06 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e06 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e06 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e06 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fc8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e07 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e08 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e09 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e0a +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0b +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0b 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0c +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e0c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0d +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e0d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0d 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0e +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e0e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0f +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e0f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0f 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e10 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e10 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e10 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e10 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e10 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e11 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e11 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e06 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e06 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fc8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e11 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030b8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030c0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fd0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e11 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e11 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030c0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e11 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e11 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e11 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e11 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e11 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fd0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e11 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e12 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e12 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e12 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e13 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e13 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e13 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e14 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e14 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e14 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e15 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e15 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e15 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e16 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e16 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e16 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e17 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e17 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e17 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e17 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e17 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e18 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e18 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e18 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e18 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e18 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e19 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e19 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e19 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e19 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e19 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1a +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e1a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1a 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1b +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e1b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1b 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1c +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e11 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e11 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fd0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e1c 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030c0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030c8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fd8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e1c +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e1c +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030c8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e1c +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e1c +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e1c +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e1c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e1c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fd8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1c 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1d +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1d 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1e +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1e 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1f +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e20 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e20 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e20 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e21 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e21 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e21 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e22 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e22 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e22 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e22 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e22 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e23 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e23 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e23 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e23 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e23 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e24 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e24 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e24 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e24 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e24 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e25 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e25 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e25 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e25 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e25 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e26 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e26 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e26 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e26 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e26 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e27 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e27 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e1c mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e1c mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fd8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e27 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030c8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030d0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fe0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e27 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e27 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030d0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e27 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e27 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e27 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e27 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e27 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fe0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e27 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e28 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e28 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e28 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e29 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e29 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e29 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2a +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2b +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2c +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2c 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2d +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e2d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2d 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2e +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e2e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2e 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2f +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e2f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e30 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e30 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e30 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e30 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e30 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e31 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e31 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e31 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e31 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e31 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e32 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e32 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e27 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e27 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fe0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e32 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030d0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030d8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002fe8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e32 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e32 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030d8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e32 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e32 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e32 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e32 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e32 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fe8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e32 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e33 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e33 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e33 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e34 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e34 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e34 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e35 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e35 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e35 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e36 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e36 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e36 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e37 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e37 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e37 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e38 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e38 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e38 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e38 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e38 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e39 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e39 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e39 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e39 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e39 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3a +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e3a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3b +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e3b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3b 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3c +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e3c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3c 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3d +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e32 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e32 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fe8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e3d 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030d8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030e0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002ff0 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e3d +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff0 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e3d +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030e0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e3d +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e3d +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e3d +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e3d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e3d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002ff0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3d 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3e +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3e 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3f +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3f 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e40 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e40 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e40 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e41 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e41 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e41 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e42 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e42 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e42 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e43 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e43 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e43 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e43 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e43 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e44 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e44 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e44 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e44 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e44 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e45 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e45 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e45 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e45 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e45 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e46 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e46 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e46 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e46 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e46 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e47 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e47 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e47 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e47 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e47 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e48 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e48 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e3d mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e3d mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ff0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e48 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030e0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030e8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080002ff8 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e48 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff8 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e48 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030e8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e48 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e48 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e48 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e48 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e48 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002ff8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e48 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e49 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e49 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e49 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4a +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4a 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4b +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4c +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4d +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4d 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4e +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e4e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4f +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e4f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4f 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e50 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e50 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e50 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e50 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e50 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e51 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e51 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e51 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e51 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e51 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e52 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e52 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e52 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e52 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e52 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e53 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e53 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e48 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e48 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ff8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e53 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030e8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030f0 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003000 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e53 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080003000 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f0 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e53 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030f0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e53 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e53 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e53 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e53 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e53 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003000 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e53 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e54 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e54 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e54 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e55 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e55 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e55 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e56 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e56 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e56 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e57 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e57 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e57 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e58 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e58 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e58 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e59 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e59 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e59 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e59 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e59 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5a +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e5a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5a 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5b +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e5b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5c +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e5c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5c 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5d +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e5d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5d 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5e +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e53 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e53 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003000 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e5e 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030f0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x00000000800030f8 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003008 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e5e +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080003008 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f8 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e5e +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x00000000800030f8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e5e +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e5e +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e5e +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e5e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e5e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003008 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5e 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5f +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5f 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e60 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e60 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e60 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e61 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e61 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e61 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e62 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e62 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e62 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e63 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e63 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e63 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e64 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e64 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e64 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e64 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e64 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e65 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e65 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e65 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e65 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e65 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e66 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e66 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e66 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e66 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e66 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e67 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e67 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e67 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e67 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e67 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e68 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e68 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e68 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e68 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e68 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e69 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e69 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e5e mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e5e mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003008 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e69 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x00000000800030f8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003100 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003010 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e69 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080003010 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003100 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e69 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003100 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e69 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e69 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e69 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e69 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e69 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003010 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e69 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6a +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6a 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6b +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6b 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6c +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6d +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6e +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6e 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6f +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e6f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e70 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e70 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e70 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e70 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e70 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e71 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e71 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e71 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e71 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e71 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e72 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e72 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e72 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e72 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e72 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e73 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e73 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e73 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e73 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e73 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e74 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e74 +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e69 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e69 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003010 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e74 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080003100 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003108 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003018 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e74 +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080003018 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003108 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e74 +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003108 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e74 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e74 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e74 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e74 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e74 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003018 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e74 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e75 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e75 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e75 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e76 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e76 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e76 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e77 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e77 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e77 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e78 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e78 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e78 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e79 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e79 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e79 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7a +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e7a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7b +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e7b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7b 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7c +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e7c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7d +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e7d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7d 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7e +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e7e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7e 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7f +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e74 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e74 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003018 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e7f 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080003108 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003110 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003020 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e7f +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001cdc (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cdc (0x00093683) x13 0x0000000000000000 mem 0x0000000080003020 +core 0: 0x0000000080001ce0 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001ce0 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003110 +core 0: 0x0000000080001ce4 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce4 (0x00048513) x10 0x0000000080022e7f +core 0: 0x0000000080001ce8 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce8 (0x00001597) x11 0x0000000080002ce8 +core 0: 0x0000000080001cec (0xe4058593) addi a1, a1, -448 +core 0: 3 0x0000000080001cec (0xe4058593) x11 0x0000000080002b28 +core 0: 0x0000000080001cf0 (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cf0 (0xd51ff0ef) x1 0x0000000080001cf4 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022cd0 0x0000000080003110 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e7f +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022e7f +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002b28 +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 0x0000000080022cb8 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf4 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e7f +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022d00 0x0000000000000001 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e7f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e7f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003020 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003118 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b28 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6fcb0b13) addi s6, s6, 1788 +core 0: 3 0x0000000080001050 (0x6fcb0b13) x22 0x0000000080002748 +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 0x0000000080002b28 +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 0x0000000080002b29 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b29 +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 0x0000000080002b29 +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 0x0000000080002b2a +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb5c mem 0x0000000080002888 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x52cc0c13) addi s8, s8, 1324 +core 0: 3 0x0000000080001378 (0x52cc0c13) x24 0x00000000800028a0 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7f 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e80 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e80 +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 0x00000000800028a1 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a1 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e80 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e81 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e81 +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 0x00000000800028a2 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a2 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e81 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e82 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e82 +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 0x00000000800028a3 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a3 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e82 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e83 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e83 +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 0x00000000800028a4 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a4 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e83 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e84 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e84 +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 0x00000000800028a5 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a5 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e84 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e85 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e85 +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 0x00000000800028a6 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x00000000800028a6 +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 0x0000000080002b2a +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2b +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 0x0000000080022e85 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e85 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e85 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e86 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e86 +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 0x0000000080002b2b +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2c +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 0x0000000080022e86 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e86 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e86 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e87 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e87 +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 0x0000000080002b2c +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b2d +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 0x0000000080022e87 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e87 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e87 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e88 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e88 +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 0x0000000080002b2d +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 0x0000000080002b2e +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b2e +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 0x0000000080002b2e +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 0x0000000080002b2f +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 0x0000000080002890 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec00 mem 0x0000000080002890 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022cb8 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022b4c +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 0x0000000080022e88 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e88 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e88 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e89 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e89 +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 0x0000000080002b2f +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b30 +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 0x0000000080022e89 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e89 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e89 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e8a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e8a +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 0x0000000080002b30 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e7f mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e7f mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003020 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003118 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e8a mem 0x0000000080022cb8 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e8a 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e8a mem 0x0000000080022cb8 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001cf4 mem 0x0000000080022cd8 +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 0x0000000080003110 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001cf4 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf4 (0x00840413) x8 0x0000000080003118 +core 0: 0x0000000080001cf8 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf8 (0x00890913) x18 0x0000000080003028 +core 0: 0x0000000080001cfc (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cfc (0x00a484b3) x9 0x0000000080022e8a +core 0: 0x0000000080001d00 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d00 (0xfd341ee3) +core 0: 0x0000000080001d04 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d04 (0x009a0663) +core 0: 0x0000000080001d08 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d08 (0x000a0513) x10 0x0000000080022d40 +core 0: 0x0000000080001d0c (0xc09ff0ef) jal pc - 0x3f8 +core 0: 3 0x0000000080001d0c (0xc09ff0ef) x1 0x0000000080001d10 core 0: >>>> printstr core 0: 0x0000000080001914 (0x00054783) lbu a5, 0(a0) -core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022cc0 +core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022d40 core 0: 0x0000000080001918 (0xf9010113) addi sp, sp, -112 -core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022c20 +core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022ca0 core 0: 0x000000008000191c (0x03f10693) addi a3, sp, 63 -core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022c5f +core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022cdf core 0: 0x0000000080001920 (0xfc06f693) andi a3, a3, -64 -core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022c40 +core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022cc0 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: 3 0x0000000080001928 (0x00050793) x15 0x0000000080022d40 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e0b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0b +core 0: 0x0000000080001934 (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 0x0000000080022e0c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0c +core 0: 0x0000000080001934 (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 0x0000000080022e0d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0d +core 0: 0x0000000080001934 (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 0x0000000080022e0e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0e +core 0: 0x0000000080001934 (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 0x0000000080022e0f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0f +core 0: 0x0000000080001934 (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 0x0000000080022e10 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e10 +core 0: 0x0000000080001934 (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 0x0000000080022e11 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e11 +core 0: 0x0000000080001934 (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 0x0000000080022e12 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e12 +core 0: 0x0000000080001934 (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 0x0000000080022e13 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e13 +core 0: 0x0000000080001934 (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 0x0000000080022e14 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e14 +core 0: 0x0000000080001934 (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 0x0000000080022e15 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e15 +core 0: 0x0000000080001934 (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 0x0000000080022e16 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e16 +core 0: 0x0000000080001934 (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 0x0000000080022e17 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e17 +core 0: 0x0000000080001934 (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 0x0000000080022e18 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e18 +core 0: 0x0000000080001934 (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 0x0000000080022e19 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e19 +core 0: 0x0000000080001934 (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 0x0000000080022e1a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1a +core 0: 0x0000000080001934 (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 0x0000000080022e1b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1b +core 0: 0x0000000080001934 (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 0x0000000080022e1c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1c +core 0: 0x0000000080001934 (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 0x0000000080022e1d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1d +core 0: 0x0000000080001934 (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 0x0000000080022e1e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1e +core 0: 0x0000000080001934 (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 0x0000000080022e1f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1f +core 0: 0x0000000080001934 (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 0x0000000080022e20 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e20 +core 0: 0x0000000080001934 (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 0x0000000080022e21 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e21 +core 0: 0x0000000080001934 (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 0x0000000080022e22 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e22 +core 0: 0x0000000080001934 (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 0x0000000080022e23 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e23 +core 0: 0x0000000080001934 (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 0x0000000080022e24 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e24 +core 0: 0x0000000080001934 (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 0x0000000080022e25 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e25 +core 0: 0x0000000080001934 (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 0x0000000080022e26 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e26 +core 0: 0x0000000080001934 (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 0x0000000080022e27 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e27 +core 0: 0x0000000080001934 (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 0x0000000080022e28 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e28 +core 0: 0x0000000080001934 (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 0x0000000080022e29 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e29 +core 0: 0x0000000080001934 (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 0x0000000080022e2a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2a +core 0: 0x0000000080001934 (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 0x0000000080022e2b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2b +core 0: 0x0000000080001934 (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 0x0000000080022e2c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2c +core 0: 0x0000000080001934 (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 0x0000000080022e2d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2d +core 0: 0x0000000080001934 (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 0x0000000080022e2e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2e +core 0: 0x0000000080001934 (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 0x0000000080022e2f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2f +core 0: 0x0000000080001934 (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 0x0000000080022e30 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e30 +core 0: 0x0000000080001934 (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 0x0000000080022e31 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e31 +core 0: 0x0000000080001934 (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 0x0000000080022e32 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e32 +core 0: 0x0000000080001934 (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 0x0000000080022e33 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e33 +core 0: 0x0000000080001934 (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 0x0000000080022e34 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e34 +core 0: 0x0000000080001934 (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 0x0000000080022e35 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e35 +core 0: 0x0000000080001934 (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 0x0000000080022e36 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e36 +core 0: 0x0000000080001934 (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 0x0000000080022e37 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e37 +core 0: 0x0000000080001934 (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 0x0000000080022e38 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e38 +core 0: 0x0000000080001934 (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 0x0000000080022e39 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e39 +core 0: 0x0000000080001934 (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 0x0000000080022e3a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3a +core 0: 0x0000000080001934 (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 0x0000000080022e3b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3b +core 0: 0x0000000080001934 (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 0x0000000080022e3c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3c +core 0: 0x0000000080001934 (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 0x0000000080022e3d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3d +core 0: 0x0000000080001934 (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 0x0000000080022e3e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3e +core 0: 0x0000000080001934 (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 0x0000000080022e3f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3f +core 0: 0x0000000080001934 (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 0x0000000080022e40 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e40 +core 0: 0x0000000080001934 (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 0x0000000080022e41 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e41 +core 0: 0x0000000080001934 (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 0x0000000080022e42 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e42 +core 0: 0x0000000080001934 (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 0x0000000080022e43 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e43 +core 0: 0x0000000080001934 (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 0x0000000080022e44 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e44 +core 0: 0x0000000080001934 (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 0x0000000080022e45 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e45 +core 0: 0x0000000080001934 (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 0x0000000080022e46 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e46 +core 0: 0x0000000080001934 (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 0x0000000080022e47 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e47 +core 0: 0x0000000080001934 (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 0x0000000080022e48 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e48 +core 0: 0x0000000080001934 (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 0x0000000080022e49 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e49 +core 0: 0x0000000080001934 (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 0x0000000080022e4a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4a +core 0: 0x0000000080001934 (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 0x0000000080022e4b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4b +core 0: 0x0000000080001934 (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 0x0000000080022e4c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4c +core 0: 0x0000000080001934 (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 0x0000000080022e4d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4d +core 0: 0x0000000080001934 (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 0x0000000080022e4e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4e +core 0: 0x0000000080001934 (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 0x0000000080022e4f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4f +core 0: 0x0000000080001934 (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 0x0000000080022e50 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e50 +core 0: 0x0000000080001934 (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 0x0000000080022e51 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e51 +core 0: 0x0000000080001934 (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 0x0000000080022e52 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e52 +core 0: 0x0000000080001934 (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 0x0000000080022e53 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e53 +core 0: 0x0000000080001934 (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 0x0000000080022e54 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e54 +core 0: 0x0000000080001934 (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 0x0000000080022e55 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e55 +core 0: 0x0000000080001934 (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 0x0000000080022e56 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e56 +core 0: 0x0000000080001934 (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 0x0000000080022e57 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e57 +core 0: 0x0000000080001934 (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 0x0000000080022e58 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e58 +core 0: 0x0000000080001934 (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 0x0000000080022e59 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e59 +core 0: 0x0000000080001934 (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 0x0000000080022e5a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5a +core 0: 0x0000000080001934 (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 0x0000000080022e5b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5b +core 0: 0x0000000080001934 (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 0x0000000080022e5c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5c +core 0: 0x0000000080001934 (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 0x0000000080022e5d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5d +core 0: 0x0000000080001934 (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 0x0000000080022e5e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5e +core 0: 0x0000000080001934 (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 0x0000000080022e5f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5f +core 0: 0x0000000080001934 (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 0x0000000080022e60 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e60 +core 0: 0x0000000080001934 (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 0x0000000080022e61 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e61 +core 0: 0x0000000080001934 (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 0x0000000080022e62 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e62 +core 0: 0x0000000080001934 (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 0x0000000080022e63 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e63 +core 0: 0x0000000080001934 (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 0x0000000080022e64 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e64 +core 0: 0x0000000080001934 (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 0x0000000080022e65 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e65 +core 0: 0x0000000080001934 (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 0x0000000080022e66 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e66 +core 0: 0x0000000080001934 (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 0x0000000080022e67 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e67 +core 0: 0x0000000080001934 (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 0x0000000080022e68 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e68 +core 0: 0x0000000080001934 (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 0x0000000080022e69 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e69 +core 0: 0x0000000080001934 (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 0x0000000080022e6a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6a +core 0: 0x0000000080001934 (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 0x0000000080022e6b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6b +core 0: 0x0000000080001934 (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 0x0000000080022e6c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6c +core 0: 0x0000000080001934 (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 0x0000000080022e6d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6d +core 0: 0x0000000080001934 (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 0x0000000080022e6e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6e +core 0: 0x0000000080001934 (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 0x0000000080022e6f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6f +core 0: 0x0000000080001934 (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 0x0000000080022e70 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e70 +core 0: 0x0000000080001934 (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 0x0000000080022e71 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e71 +core 0: 0x0000000080001934 (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 0x0000000080022e72 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e72 +core 0: 0x0000000080001934 (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 0x0000000080022e73 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e73 +core 0: 0x0000000080001934 (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 0x0000000080022e74 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e74 +core 0: 0x0000000080001934 (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 0x0000000080022e75 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e75 +core 0: 0x0000000080001934 (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 0x0000000080022e76 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e76 +core 0: 0x0000000080001934 (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 0x0000000080022e77 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e77 +core 0: 0x0000000080001934 (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 0x0000000080022e78 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e78 +core 0: 0x0000000080001934 (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 0x0000000080022e79 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e79 +core 0: 0x0000000080001934 (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 0x0000000080022e7a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7a +core 0: 0x0000000080001934 (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 0x0000000080022e7b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7b +core 0: 0x0000000080001934 (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 0x0000000080022e7c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7c +core 0: 0x0000000080001934 (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 0x0000000080022e7d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7d +core 0: 0x0000000080001934 (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 0x0000000080022e7e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7e +core 0: 0x0000000080001934 (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 0x0000000080022e7f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7f +core 0: 0x0000000080001934 (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 0x0000000080022e80 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e80 +core 0: 0x0000000080001934 (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 0x0000000080022e81 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e81 +core 0: 0x0000000080001934 (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 0x0000000080022e82 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e82 +core 0: 0x0000000080001934 (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 0x0000000080022e83 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e83 +core 0: 0x0000000080001934 (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 0x0000000080022e84 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e84 +core 0: 0x0000000080001934 (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 0x0000000080022e85 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e85 +core 0: 0x0000000080001934 (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 0x0000000080022e86 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e86 +core 0: 0x0000000080001934 (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 0x0000000080022e87 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e87 +core 0: 0x0000000080001934 (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 0x0000000080022e88 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e88 +core 0: 0x0000000080001934 (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 0x0000000080022e89 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e89 +core 0: 0x0000000080001934 (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 0x0000000080022e8a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e8a +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: 3 0x0000000080001940 (0x00e6b023) mem 0x0000000080022cc0 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: 3 0x0000000080001948 (0x00e6b423) mem 0x0000000080022cc8 0x0000000000000001 core 0: 0x000000008000194c (0x00a6b823) sd a0, 16(a3) -core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022c50 0x0000000080022cc0 +core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022cd0 0x0000000080022d40 core 0: 0x0000000080001950 (0x00f6bc23) sd a5, 24(a3) -core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022c58 0x000000000000014a +core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022cd8 0x000000000000014a core 0: 0x0000000080001954 (0x0330000f) fence rw,rw core 0: 3 0x0000000080001954 (0x0330000f) core 0: 0x0000000080001958 (0xbfffe717) auipc a4, 0xbfffe @@ -22203,7 +29090,7 @@ 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: 3 0x0000000080001964 (0x6ad7b023) mem 0x0000000040000000 0x0000000080022cc0 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 @@ -22215,15 +29102,15 @@ core 0: 3 0x0000000080001974 (0x6c07b823) mem 0x0000000040000040 0x000000000 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: 3 0x000000008000197c (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022cc0 core 0: 0x0000000080001980 (0x07010113) addi sp, sp, 112 -core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022d10 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: 0x0000000080001d10 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d10 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d14 (0xbbdff0ef) jal pc - 0x444 +core 0: 3 0x0000000080001d14 (0xbbdff0ef) x1 0x0000000080001d18 core 0: >>>> tohost_exit core 0: 0x00000000800018d0 (0x00151793) slli a5, a0, 1 core 0: 3 0x00000000800018d0 (0x00151793) x15 0x0000000000000000 diff --git a/traces/with_zfa.txt b/traces/with_zfa.txt index e058c7b..b0afd59 100644 --- a/traces/with_zfa.txt +++ b/traces/with_zfa.txt @@ -163,14 +163,14 @@ 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: 0x0000000080000144 (0xe8018193) addi gp, gp, -384 +core 0: 3 0x0000000080000144 (0xe8018193) x3 0x0000000080002fc0 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: 0x000000008000014c (0xd7720213) addi tp, tp, -649 +core 0: 3 0x000000008000014c (0xd7720213) x4 0x0000000080002ebf core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 -core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002940 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002e80 core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 core 0: 0x0000000080000158 (0x00100593) li a1, 1 @@ -182,22096 +182,23011 @@ 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: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022e80 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: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002e80 +core 0: 0x0000000080000174 (0x2910106f) j pc + 0x1a90 +core 0: 3 0x0000000080000174 (0x2910106f) 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: 0x0000000080001c04 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001c04 (0xbd010113) x2 0x0000000080022a50 +core 0: 0x0000000080001c08 (0xec018793) addi a5, gp, -320 +core 0: 3 0x0000000080001c08 (0xec018793) x15 0x0000000080002e80 +core 0: 0x0000000080001c0c (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001c0c (0x42813023) mem 0x0000000080022e70 0x0000000000000000 +core 0: 0x0000000080001c10 (0xec018413) addi s0, gp, -320 +core 0: 3 0x0000000080001c10 (0xec018413) x8 0x0000000080002e80 +core 0: 0x0000000080001c14 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001c14 (0x40913c23) mem 0x0000000080022e68 0x0000000000000000 +core 0: 0x0000000080001c18 (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001c18 (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001c1c (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c1c (0x41213823) mem 0x0000000080022e60 0x0000000000000000 +core 0: 0x0000000080001c20 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c20 (0x41313423) mem 0x0000000080022e58 0x0000000000000000 +core 0: 0x0000000080001c24 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001c24 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001c28 (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001c28 (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001c2c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c2c (0x00020513) x10 0x0000000080002e80 +core 0: 0x0000000080001c30 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c30 (0x00078593) x11 0x0000000080002e80 +core 0: 0x0000000080001c34 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c34 (0x00048613) x12 0x0000000000000000 +core 0: 0x0000000080001c38 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c38 (0x42113423) mem 0x0000000080022e78 0x0000000000000000 +core 0: 0x0000000080001c3c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c3c (0x41413023) mem 0x0000000080022e50 0x0000000000000000 +core 0: 0x0000000080001c40 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c40 (0x3f513c23) mem 0x0000000080022e48 0x0000000000000000 +core 0: 0x0000000080001c44 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c44 (0x00020a93) x21 0x0000000080002e80 +core 0: 0x0000000080001c48 (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c48 (0xe91ff0ef) x1 0x0000000080001c4c +core 0: >>>> memcpy +core 0: 0x0000000080001ad8 (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001ad8 (0x00c5e7b3) x15 0x0000000080002e80 +core 0: 0x0000000080001adc (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001adc (0x00f567b3) x15 0x0000000080002e80 +core 0: 0x0000000080001ae0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ae0 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ae4 (0x00058393) x7 0x0000000080002e80 +core 0: 0x0000000080001ae8 (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001ae8 (0x00c506b3) x13 0x0000000080002e80 +core 0: 0x0000000080001aec (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001aec (0x02078463) +core 0: 0x0000000080001b14 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001b14 (0x04050713) x14 0x0000000080002ec0 +core 0: 0x0000000080001b18 (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001b18 (0x08d77463) +core 0: 0x0000000080001ba0 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001ba0 (0x00050793) x15 0x0000000080002e80 +core 0: 0x0000000080001ba4 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001ba4 (0xfddff06f) +core 0: 0x0000000080001b80 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b80 (0xf8d7f8e3) +core 0: 0x0000000080001b10 (0x00008067) ret +core 0: 3 0x0000000080001b10 (0x00008067) +core 0: 0x0000000080001c4c (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c4c (0x00001617) x12 0x0000000080002c4c +core 0: 0x0000000080001c50 (0x27860613) addi a2, a2, 632 +core 0: 3 0x0000000080001c50 (0x27860613) x12 0x0000000080002ec4 +core 0: 0x0000000080001c54 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c54 (0x40860633) x12 0x0000000000000044 +core 0: 0x0000000080001c58 (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c58 (0x009a8533) x10 0x0000000080002e80 +core 0: 0x0000000080001c5c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c5c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c60 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c60 (0xf49ff0ef) x1 0x0000000080001c64 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: 0x0000000080001ba8 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001ba8 (0x00c567b3) x15 0x0000000080002ec4 +core 0: 0x0000000080001bac (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001bac (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001bb0 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001bb0 (0x00c50633) x12 0x0000000080002ec4 +core 0: 0x0000000080001bb4 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001bb4 (0x00078e63) +core 0: 0x0000000080001bb8 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001bb8 (0x00050793) x15 0x0000000080002e80 +core 0: 0x0000000080001bbc (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001bbc (0x04c57263) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e81 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e80 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e82 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e81 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e83 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e82 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e84 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e83 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e85 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e84 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e86 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e85 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e87 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e86 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e88 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e87 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e89 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e88 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8a +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e89 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8b +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8a 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8c +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8b 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8d +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8c 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8e +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8d 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e8f +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8e 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e90 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e8f 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e91 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e90 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e92 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e91 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e93 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e92 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e94 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e93 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e95 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e94 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e96 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e95 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e97 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e96 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e98 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e97 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e99 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e98 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9a +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e99 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9b +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9a 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9c +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9b 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9d +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9c 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9e +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9d 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002e9f +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9e 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002e9f 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ea9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eaa +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ea9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eab +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eaa 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eac +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eab 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ead +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eac 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eae +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ead 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eaf +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eae 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eaf 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eb9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002eba +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eb9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ebb +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002eba 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ebc +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ebb 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ebd +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ebc 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ebe +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ebd 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ebf +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ebe 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ec0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ebf 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ec1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ec0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ec2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ec1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ec3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ec2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080002ec4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080002ec3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bcc (0x00008067) ret +core 0: 3 0x0000000080001bcc (0x00008067) +core 0: 0x0000000080001c64 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c64 (0x03f10a13) x20 0x0000000080022a8f +core 0: 0x0000000080001c68 (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c68 (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c6c (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c6c (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c70 (0xd45ff0ef) jal pc - 0x2bc +core 0: 3 0x0000000080001c70 (0xd45ff0ef) x1 0x0000000080001c74 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: 0x00000000800019b4 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x00000000800019b4 (0x00051463) +core 0: 0x00000000800019b8 (0x00008067) ret +core 0: 3 0x00000000800019b8 (0x00008067) +core 0: 0x0000000080001c74 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c74 (0xfc0a7a13) x20 0x0000000080022a80 +core 0: 0x0000000080001c78 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c78 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c7c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c7c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c80 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c80 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c84 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c84 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c88 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c88 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c8c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c8c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c90 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c90 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c94 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c94 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c98 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c98 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c9c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c9c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001ca0 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001ca0 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001ca4 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001ca4 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001ca8 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001ca8 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001cac (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001cac (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001cb0 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001cb0 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001cb4 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001cb4 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001cb8 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001cb8 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001cbc (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001cbc (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001cc0 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001cc0 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cc4 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cc4 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cc8 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cc8 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001ccc (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001ccc (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cd0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cd0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cd4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cd4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cd8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cd8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cdc (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cdc (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001ce0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001ce0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ce4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ce4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001ce8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001ce8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cec (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cec (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cf0 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cf0 (0x16c000ef) x1 0x0000000080001cf4 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: 0x0000000080001e5c (0xdf010113) addi sp, sp, -528 +core 0: 3 0x0000000080001e5c (0xdf010113) x2 0x0000000080022840 +core 0: 0x0000000080001e60 (0x20813427) fsd fs0, 520(sp) +core 0: 3 0x0000000080001e60 (0x20813427) mem 0x0000000080022a48 0xffffffff00000000 +core 0: 0x0000000080001e64 (0x20913027) fsd fs1, 512(sp) +core 0: 3 0x0000000080001e64 (0x20913027) mem 0x0000000080022a40 0xffffffff00000000 +core 0: 0x0000000080001e68 (0x1f213c27) fsd fs2, 504(sp) +core 0: 3 0x0000000080001e68 (0x1f213c27) mem 0x0000000080022a38 0xffffffff00000000 +core 0: 0x0000000080001e6c (0x1f313827) fsd fs3, 496(sp) +core 0: 3 0x0000000080001e6c (0x1f313827) mem 0x0000000080022a30 0xffffffff00000000 +core 0: 0x0000000080001e70 (0x1f413427) fsd fs4, 488(sp) +core 0: 3 0x0000000080001e70 (0x1f413427) mem 0x0000000080022a28 0xffffffff00000000 +core 0: 0x0000000080001e74 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e74 (0xc00027f3) x15 0x00000000000004dd +core 0: 0x0000000080001e78 (0x00001717) auipc a4, 0x1 +core 0: 3 0x0000000080001e78 (0x00001717) x14 0x0000000080002e78 +core 0: 0x0000000080001e7c (0x9a870713) addi a4, a4, -1624 +core 0: 3 0x0000000080001e7c (0x9a870713) x14 0x0000000080002820 +core 0: 0x0000000080001e80 (0x00072707) flw fa4, 0(a4) +core 0: 3 0x0000000080001e80 (0x00072707) f14 0xffffffff40500000 mem 0x0000000080002820 +core 0: 0x0000000080001e84 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e84 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001e88 (0x00e12227) fsw fa4, 4(sp) +core 0: 3 0x0000000080001e88 (0x00e12227) mem 0x0000000080022844 0x40500000 +core 0: 0x0000000080001e8c (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001e8c (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022844 +core 0: 0x0000000080001e90 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e90 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e94 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e94 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e98 (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e98 (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001e9c (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e9c (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ea0 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ea0 (0x00f12427) mem 0x0000000080022848 0x40400000 +core 0: 0x0000000080001ea4 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001ea4 (0xfe0792e3) +core 0: 0x0000000080001ea8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ea8 (0xc00027f3) x15 0x0000000000000679 +core 0: 0x0000000080001eac (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001eac (0xc00027f3) x15 0x0000000000000682 +core 0: 0x0000000080001eb0 (0x00001697) auipc a3, 0x1 +core 0: 3 0x0000000080001eb0 (0x00001697) x13 0x0000000080002eb0 +core 0: 0x0000000080001eb4 (0x91868693) addi a3, a3, -1768 +core 0: 3 0x0000000080001eb4 (0x91868693) x13 0x00000000800027c8 +core 0: 0x0000000080001eb8 (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x0000000080001eb8 (0x0006b707) f14 0x400a000000000000 mem 0x00000000800027c8 +core 0: 0x0000000080001ebc (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ebc (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ec0 (0x02e13027) fsd fa4, 32(sp) +core 0: 3 0x0000000080001ec0 (0x02e13027) mem 0x0000000080022860 0x400a000000000000 +core 0: 0x0000000080001ec4 (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001ec4 (0x02013787) f15 0x400a000000000000 mem 0x0000000080022860 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: 0x0000000080001ecc (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001ecc (0x4247c7d3) f15 0x4008000000000000 +core 0: 0x0000000080001ed0 (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001ed0 (0x02f13427) mem 0x0000000080022868 0x4008000000000000 +core 0: 0x0000000080001ed4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001ed4 (0xfe0796e3) +core 0: 0x0000000080001ed8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed8 (0xc00027f3) x15 0x0000000000000746 +core 0: 0x0000000080001edc (0x00072707) flw fa4, 0(a4) +core 0: 3 0x0000000080001edc (0x00072707) f14 0xffffffff40500000 mem 0x0000000080002820 +core 0: 0x0000000080001ee0 (0xf01b07d3) fli.s (args unknown) +core 0: 3 0x0000000080001ee0 (0xf01b07d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ee4 (0x00e12627) fsw fa4, 12(sp) +core 0: 3 0x0000000080001ee4 (0x00e12627) mem 0x000000008002284c 0x40500000 +core 0: 0x0000000080001ee8 (0x00f12827) fsw fa5, 16(sp) +core 0: 3 0x0000000080001ee8 (0x00f12827) mem 0x0000000080022850 0x40400000 core 0: 0x0000000080001eec (0xc00027f3) csrr a5, cycle -core 0: 3 0x0000000080001eec (0xc00027f3) x15 0x00000000000006ce +core 0: 3 0x0000000080001eec (0xc00027f3) x15 0x0000000000000762 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: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001ef4 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001ef4 (0x00c12787) f15 0xffffffff40500000 mem 0x000000008002284c +core 0: 0x0000000080001ef8 (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001ef8 (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022850 +core 0: 0x0000000080001efc (0xa0e7c753) fleq.s (args unknown) +core 0: 3 0x0000000080001efc (0xa0e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f00 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f00 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f04 (0xfe0798e3) +core 0: 0x0000000080001f08 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f08 (0xc00027f3) x15 0x00000000000007cb +core 0: 0x0000000080001f0c (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x0000000080001f0c (0x0006b707) f14 0x400a000000000000 mem 0x00000000800027c8 +core 0: 0x0000000080001f10 (0xf21b07d3) fli.d (args unknown) +core 0: 3 0x0000000080001f10 (0xf21b07d3) f15 0x4008000000000000 +core 0: 0x0000000080001f14 (0x02e13827) fsd fa4, 48(sp) +core 0: 3 0x0000000080001f14 (0x02e13827) mem 0x0000000080022870 0x400a000000000000 +core 0: 0x0000000080001f18 (0x02f13c27) fsd fa5, 56(sp) +core 0: 3 0x0000000080001f18 (0x02f13c27) mem 0x0000000080022878 0x4008000000000000 +core 0: 0x0000000080001f1c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f1c (0xc00027f3) x15 0x00000000000007da +core 0: 0x0000000080001f20 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f20 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f24 (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f24 (0x03013787) f15 0x400a000000000000 mem 0x0000000080022870 +core 0: 0x0000000080001f28 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f28 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022878 +core 0: 0x0000000080001f2c (0xa2e7c753) fleq.d (args unknown) +core 0: 3 0x0000000080001f2c (0xa2e7c753) x14 0x0000000000000000 +core 0: 0x0000000080001f30 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f30 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f34 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001f34 (0xfe0798e3) +core 0: 0x0000000080001f38 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f38 (0xc00027f3) x15 0x0000000000000840 +core 0: 0x0000000080001f3c (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001f3c (0x00001797) x15 0x0000000080002f3c +core 0: 0x0000000080001f40 (0x8987a787) flw fa5, -1896(a5) +core 0: 3 0x0000000080001f40 (0x8987a787) f15 0xffffffff80000000 mem 0x00000000800027d4 +core 0: 0x0000000080001f44 (0x00012a23) sw zero, 20(sp) +core 0: 3 0x0000000080001f44 (0x00012a23) mem 0x0000000080022854 0x00000000 +core 0: 0x0000000080001f48 (0x00f12c27) fsw fa5, 24(sp) +core 0: 3 0x0000000080001f48 (0x00f12c27) mem 0x0000000080022858 0x80000000 +core 0: 0x0000000080001f4c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f4c (0xc00027f3) x15 0x000000000000084e +core 0: 0x0000000080001f50 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f50 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f54 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001f54 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022854 +core 0: 0x0000000080001f58 (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001f58 (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022858 +core 0: 0x0000000080001f5c (0x28e7a7d3) fminm.s (args unknown) +core 0: 3 0x0000000080001f5c (0x28e7a7d3) f15 0xffffffff80000000 +core 0: 0x0000000080001f60 (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x0000000080001f60 (0x00f12e27) mem 0x000000008002285c 0x80000000 +core 0: 0x0000000080001f64 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f64 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f68 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f68 (0xfe0796e3) +core 0: 0x0000000080001f6c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f6c (0xc00027f3) x15 0x00000000000008fa +core 0: 0x0000000080001f70 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001f70 (0x00001797) x15 0x0000000080002f70 +core 0: 0x0000000080001f74 (0x8607b787) fld fa5, -1952(a5) +core 0: 3 0x0000000080001f74 (0x8607b787) f15 0x8000000000000000 mem 0x00000000800027d0 +core 0: 0x0000000080001f78 (0x04013023) sd zero, 64(sp) +core 0: 3 0x0000000080001f78 (0x04013023) mem 0x0000000080022880 0x0000000000000000 +core 0: 0x0000000080001f7c (0x04f13427) fsd fa5, 72(sp) +core 0: 3 0x0000000080001f7c (0x04f13427) mem 0x0000000080022888 0x8000000000000000 +core 0: 0x0000000080001f80 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f80 (0xc00027f3) x15 0x000000000000091f +core 0: 0x0000000080001f84 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f84 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001f88 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080001f88 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022880 +core 0: 0x0000000080001f8c (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080001f8c (0x04813707) f14 0x8000000000000000 mem 0x0000000080022888 +core 0: 0x0000000080001f90 (0x2ae7a7d3) fminm.d (args unknown) +core 0: 3 0x0000000080001f90 (0x2ae7a7d3) f15 0x8000000000000000 +core 0: 0x0000000080001f94 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080001f94 (0x04f13827) mem 0x0000000080022890 0x8000000000000000 +core 0: 0x0000000080001f98 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f98 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f9c (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001f9c (0xfe0796e3) +core 0: 0x0000000080001fa0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001fa0 (0xc00027f3) x15 0x00000000000009dd +core 0: 0x0000000080001fa4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001fa4 (0xc00027f3) x15 0x00000000000009e6 +core 0: 0x0000000080001fa8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fa8 (0x00001797) x15 0x0000000080002fa8 +core 0: 0x0000000080001fac (0x87c7a907) flw fs2, -1924(a5) +core 0: 3 0x0000000080001fac (0x87c7a907) f18 0xffffffff38800000 mem 0x0000000080002824 +core 0: 0x0000000080001fb0 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fb0 (0x00001797) x15 0x0000000080002fb0 +core 0: 0x0000000080001fb4 (0x8787a487) flw fs1, -1928(a5) +core 0: 3 0x0000000080001fb4 (0x8787a487) f9 0xffffffff39000000 mem 0x0000000080002828 +core 0: 0x0000000080001fb8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fb8 (0x00001797) x15 0x0000000080002fb8 +core 0: 0x0000000080001fbc (0x8747a407) flw fs0, -1932(a5) +core 0: 3 0x0000000080001fbc (0x8747a407) f8 0xffffffff39800000 mem 0x000000008000282c +core 0: 0x0000000080001fc0 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fc0 (0x00001797) x15 0x0000000080002fc0 +core 0: 0x0000000080001fc4 (0x8707af87) flw ft11, -1936(a5) +core 0: 3 0x0000000080001fc4 (0x8707af87) f31 0xffffffff3a000000 mem 0x0000000080002830 +core 0: 0x0000000080001fc8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fc8 (0x00001797) x15 0x0000000080002fc8 +core 0: 0x0000000080001fcc (0x86c7af07) flw ft10, -1940(a5) +core 0: 3 0x0000000080001fcc (0x86c7af07) f30 0xffffffff3a800000 mem 0x0000000080002834 +core 0: 0x0000000080001fd0 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fd0 (0x00001797) x15 0x0000000080002fd0 +core 0: 0x0000000080001fd4 (0x8687ae87) flw ft9, -1944(a5) +core 0: 3 0x0000000080001fd4 (0x8687ae87) f29 0xffffffff3b000000 mem 0x0000000080002838 +core 0: 0x0000000080001fd8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fd8 (0x00001797) x15 0x0000000080002fd8 +core 0: 0x0000000080001fdc (0x8647a807) flw fa6, -1948(a5) +core 0: 3 0x0000000080001fdc (0x8647a807) f16 0xffffffff3c800000 mem 0x000000008000283c +core 0: 0x0000000080001fe0 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fe0 (0x00001797) x15 0x0000000080002fe0 +core 0: 0x0000000080001fe4 (0x8607a387) flw ft7, -1952(a5) +core 0: 3 0x0000000080001fe4 (0x8607a387) f7 0xffffffff3d000000 mem 0x0000000080002840 +core 0: 0x0000000080001fe8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fe8 (0x00001797) x15 0x0000000080002fe8 +core 0: 0x0000000080001fec (0x85c7a587) flw fa1, -1956(a5) +core 0: 3 0x0000000080001fec (0x85c7a587) f11 0xffffffff42000000 mem 0x0000000080002844 +core 0: 0x0000000080001ff0 (0xf01007d3) fli.s (args unknown) +core 0: 3 0x0000000080001ff0 (0xf01007d3) f15 0xffffffffbf800000 +core 0: 0x0000000080001ff4 (0xf0110a53) fli.s (args unknown) +core 0: 3 0x0000000080001ff4 (0xf0110a53) f20 0xffffffff37800000 +core 0: 0x0000000080001ff8 (0xf01189d3) fli.s (args unknown) +core 0: 3 0x0000000080001ff8 (0xf01189d3) f19 0xffffffff38000000 +core 0: 0x0000000080001ffc (0xf0120e53) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0120e53) f28 0xffffffff3b800000 +core 0: 0x0000000080002000 (0xf01288d3) fli.s (args unknown) +core 0: 3 0x0000000080002000 (0xf01288d3) f17 0xffffffff3c000000 +core 0: 0x0000000080002004 (0xf0130353) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf0130353) f6 0xffffffff3d800000 +core 0: 0x0000000080002008 (0xf01382d3) fli.s (args unknown) +core 0: 3 0x0000000080002008 (0xf01382d3) f5 0xffffffff3e000000 +core 0: 0x000000008000200c (0xf0140253) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf0140253) f4 0xffffffff3e800000 +core 0: 0x0000000080002010 (0xf01601d3) fli.s (args unknown) +core 0: 3 0x0000000080002010 (0xf01601d3) f3 0xffffffff3f000000 +core 0: 0x0000000080002014 (0xf0170153) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf0170153) f2 0xffffffff3f400000 +core 0: 0x0000000080002018 (0xf01800d3) fli.s (args unknown) +core 0: 3 0x0000000080002018 (0xf01800d3) f1 0xffffffff3f800000 +core 0: 0x000000008000201c (0xf0188053) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf0188053) f0 0xffffffff3fa00000 +core 0: 0x0000000080002020 (0xf0190553) fli.s (args unknown) +core 0: 3 0x0000000080002020 (0xf0190553) f10 0xffffffff3fc00000 +core 0: 0x0000000080002024 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002024 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x0000000080002028 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002028 (0x06f12027) mem 0x00000000800228a0 0xbf800000 +core 0: 0x000000008000202c (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x000000008000202c (0x06f12227) mem 0x00000000800228a4 0xbf800000 +core 0: 0x0000000080002030 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002030 (0x07412427) mem 0x00000000800228a8 0x37800000 +core 0: 0x0000000080002034 (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x0000000080002034 (0x07312627) mem 0x00000000800228ac 0x38000000 +core 0: 0x0000000080002038 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x0000000080002038 (0x07212827) mem 0x00000000800228b0 0x38800000 +core 0: 0x000000008000203c (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x000000008000203c (0x06912a27) mem 0x00000000800228b4 0x39000000 +core 0: 0x0000000080002040 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x0000000080002040 (0x06812c27) mem 0x00000000800228b8 0x39800000 +core 0: 0x0000000080002044 (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x0000000080002044 (0x07f12e27) mem 0x00000000800228bc 0x3a000000 +core 0: 0x0000000080002048 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x0000000080002048 (0x09e12027) mem 0x00000000800228c0 0x3a800000 +core 0: 0x000000008000204c (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x000000008000204c (0x09d12227) mem 0x00000000800228c4 0x3b000000 +core 0: 0x0000000080002050 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x0000000080002050 (0x09c12427) mem 0x00000000800228c8 0x3b800000 +core 0: 0x0000000080002054 (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x0000000080002054 (0x09112627) mem 0x00000000800228cc 0x3c000000 +core 0: 0x0000000080002058 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x0000000080002058 (0x09012827) mem 0x00000000800228d0 0x3c800000 +core 0: 0x000000008000205c (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x000000008000205c (0x08712a27) mem 0x00000000800228d4 0x3d000000 +core 0: 0x0000000080002060 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x0000000080002060 (0x08612c27) mem 0x00000000800228d8 0x3d800000 +core 0: 0x0000000080002064 (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x0000000080002064 (0x08512e27) mem 0x00000000800228dc 0x3e000000 +core 0: 0x0000000080002068 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x0000000080002068 (0x0a412027) mem 0x00000000800228e0 0x3e800000 +core 0: 0x000000008000206c (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x000000008000206c (0x0a312227) mem 0x00000000800228e4 0x3f000000 +core 0: 0x0000000080002070 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x0000000080002070 (0x0a212427) mem 0x00000000800228e8 0x3f400000 +core 0: 0x0000000080002074 (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x0000000080002074 (0x0a112627) mem 0x00000000800228ec 0x3f800000 +core 0: 0x0000000080002078 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002078 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x000000008000207c (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x000000008000207c (0x0a012827) mem 0x00000000800228f0 0x3fa00000 +core 0: 0x0000000080002080 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002084 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x0000000080002084 (0x0aa12a27) mem 0x00000000800228f4 0x3fc00000 +core 0: 0x0000000080002088 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002088 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x000000008000208c (0x0ae12c27) fsw fa4, 184(sp) +core 0: 3 0x000000008000208c (0x0ae12c27) mem 0x00000000800228f8 0x3fe00000 +core 0: 0x0000000080002090 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002094 (0x0ac12e27) fsw fa2, 188(sp) +core 0: 3 0x0000000080002094 (0x0ac12e27) mem 0x00000000800228fc 0x40000000 +core 0: 0x0000000080002098 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x000000008000209c (0x0cd12027) fsw fa3, 192(sp) +core 0: 3 0x000000008000209c (0x0cd12027) mem 0x0000000080022900 0x40200000 +core 0: 0x00000000800020a0 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x00000000800020a4 (0x0ce12227) fsw fa4, 196(sp) +core 0: 3 0x00000000800020a4 (0x0ce12227) mem 0x0000000080022904 0x40400000 +core 0: 0x00000000800020a8 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x00000000800020ac (0x0cc12427) fsw fa2, 200(sp) +core 0: 3 0x00000000800020ac (0x0cc12427) mem 0x0000000080022908 0x40800000 +core 0: 0x00000000800020b0 (0x0cd12627) fsw fa3, 204(sp) +core 0: 3 0x00000000800020b0 (0x0cd12627) mem 0x000000008002290c 0x41000000 +core 0: 0x00000000800020b4 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x00000000800020b4 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x00000000800020b8 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x00000000800020b8 (0x0ce12827) mem 0x0000000080022910 0x41800000 +core 0: 0x00000000800020bc (0xf01f8753) fli.s (args unknown) +core 0: 3 0x00000000800020bc (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x00000000800020c0 (0x0cb12a27) fsw fa1, 212(sp) +core 0: 3 0x00000000800020c0 (0x0cb12a27) mem 0x0000000080022914 0x42000000 +core 0: 0x00000000800020c4 (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x00000000800020c4 (0x0cd12c27) mem 0x0000000080022918 0x7f800000 +core 0: 0x00000000800020c8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800020c8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x00000000800020cc (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x00000000800020cc (0x0ce12e27) mem 0x000000008002291c 0x7fc00000 +core 0: 0x00000000800020d0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800020d0 (0xf4079ce3) +core 0: 0x00000000800020d4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800020d4 (0xc00027f3) x15 0x0000000000000c41 +core 0: 0x00000000800020d8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800020d8 (0xc00027f3) x15 0x0000000000000c4a +core 0: 0x00000000800020dc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020dc (0x00000797) x15 0x00000000800020dc +core 0: 0x00000000800020e0 (0x6fc7b907) fld fs2, 1788(a5) +core 0: 3 0x00000000800020e0 (0x6fc7b907) f18 0x3f10000000000000 mem 0x00000000800027d8 +core 0: 0x00000000800020e4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020e4 (0x00000797) x15 0x00000000800020e4 +core 0: 0x00000000800020e8 (0x6fc7b487) fld fs1, 1788(a5) +core 0: 3 0x00000000800020e8 (0x6fc7b487) f9 0x3f20000000000000 mem 0x00000000800027e0 +core 0: 0x00000000800020ec (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020ec (0x00000797) x15 0x00000000800020ec +core 0: 0x00000000800020f0 (0x6fc7b407) fld fs0, 1788(a5) +core 0: 3 0x00000000800020f0 (0x6fc7b407) f8 0x3f30000000000000 mem 0x00000000800027e8 +core 0: 0x00000000800020f4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020f4 (0x00000797) x15 0x00000000800020f4 +core 0: 0x00000000800020f8 (0x6fc7bf87) fld ft11, 1788(a5) +core 0: 3 0x00000000800020f8 (0x6fc7bf87) f31 0x3f40000000000000 mem 0x00000000800027f0 +core 0: 0x00000000800020fc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020fc (0x00000797) x15 0x00000000800020fc +core 0: 0x0000000080002100 (0x6fc7bf07) fld ft10, 1788(a5) +core 0: 3 0x0000000080002100 (0x6fc7bf07) f30 0x3f50000000000000 mem 0x00000000800027f8 +core 0: 0x0000000080002104 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002104 (0x00000797) x15 0x0000000080002104 +core 0: 0x0000000080002108 (0x6fc7be87) fld ft9, 1788(a5) +core 0: 3 0x0000000080002108 (0x6fc7be87) f29 0x3f60000000000000 mem 0x0000000080002800 +core 0: 0x000000008000210c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000210c (0x00000797) x15 0x000000008000210c +core 0: 0x0000000080002110 (0x6fc7b807) fld fa6, 1788(a5) +core 0: 3 0x0000000080002110 (0x6fc7b807) f16 0x3f90000000000000 mem 0x0000000080002808 +core 0: 0x0000000080002114 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002114 (0x00000797) x15 0x0000000080002114 +core 0: 0x0000000080002118 (0x6fc7b387) fld ft7, 1788(a5) +core 0: 3 0x0000000080002118 (0x6fc7b387) f7 0x3fa0000000000000 mem 0x0000000080002810 +core 0: 0x000000008000211c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000211c (0x00000797) x15 0x000000008000211c +core 0: 0x0000000080002120 (0x6fc7b587) fld fa1, 1788(a5) +core 0: 3 0x0000000080002120 (0x6fc7b587) f11 0x4040000000000000 mem 0x0000000080002818 +core 0: 0x0000000080002124 (0xf21007d3) fli.d (args unknown) +core 0: 3 0x0000000080002124 (0xf21007d3) f15 0xbff0000000000000 +core 0: 0x0000000080002128 (0xf2110a53) fli.d (args unknown) +core 0: 3 0x0000000080002128 (0xf2110a53) f20 0x3ef0000000000000 +core 0: 0x000000008000212c (0xf21189d3) fli.d (args unknown) +core 0: 3 0x000000008000212c (0xf21189d3) f19 0x3f00000000000000 +core 0: 0x0000000080002130 (0xf2120e53) fli.d (args unknown) +core 0: 3 0x0000000080002130 (0xf2120e53) f28 0x3f70000000000000 +core 0: 0x0000000080002134 (0xf21288d3) fli.d (args unknown) +core 0: 3 0x0000000080002134 (0xf21288d3) f17 0x3f80000000000000 +core 0: 0x0000000080002138 (0xf2130353) fli.d (args unknown) +core 0: 3 0x0000000080002138 (0xf2130353) f6 0x3fb0000000000000 +core 0: 0x000000008000213c (0xf21382d3) fli.d (args unknown) +core 0: 3 0x000000008000213c (0xf21382d3) f5 0x3fc0000000000000 +core 0: 0x0000000080002140 (0xf2140253) fli.d (args unknown) +core 0: 3 0x0000000080002140 (0xf2140253) f4 0x3fd0000000000000 +core 0: 0x0000000080002144 (0xf21601d3) fli.d (args unknown) +core 0: 3 0x0000000080002144 (0xf21601d3) f3 0x3fe0000000000000 +core 0: 0x0000000080002148 (0xf2170153) fli.d (args unknown) +core 0: 3 0x0000000080002148 (0xf2170153) f2 0x3fe8000000000000 +core 0: 0x000000008000214c (0xf21800d3) fli.d (args unknown) +core 0: 3 0x000000008000214c (0xf21800d3) f1 0x3ff0000000000000 +core 0: 0x0000000080002150 (0xf2188053) fli.d (args unknown) +core 0: 3 0x0000000080002150 (0xf2188053) f0 0x3ff4000000000000 +core 0: 0x0000000080002154 (0xf2190553) fli.d (args unknown) +core 0: 3 0x0000000080002154 (0xf2190553) f10 0x3ff8000000000000 +core 0: 0x0000000080002158 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002158 (0x00a00793) x15 0x000000000000000a +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x000000008000215c (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x000000008000215c (0x0ef13027) mem 0x0000000080022920 0xbff0000000000000 +core 0: 0x0000000080002160 (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x0000000080002160 (0x0ef13427) mem 0x0000000080022928 0xbff0000000000000 +core 0: 0x0000000080002164 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002164 (0x0f413827) mem 0x0000000080022930 0x3ef0000000000000 +core 0: 0x0000000080002168 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002168 (0x0f313c27) mem 0x0000000080022938 0x3f00000000000000 +core 0: 0x000000008000216c (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x000000008000216c (0x11213027) mem 0x0000000080022940 0x3f10000000000000 +core 0: 0x0000000080002170 (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x0000000080002170 (0x10913427) mem 0x0000000080022948 0x3f20000000000000 +core 0: 0x0000000080002174 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002174 (0x10813827) mem 0x0000000080022950 0x3f30000000000000 +core 0: 0x0000000080002178 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002178 (0x11f13c27) mem 0x0000000080022958 0x3f40000000000000 +core 0: 0x000000008000217c (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x000000008000217c (0x13e13027) mem 0x0000000080022960 0x3f50000000000000 +core 0: 0x0000000080002180 (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x0000000080002180 (0x13d13427) mem 0x0000000080022968 0x3f60000000000000 +core 0: 0x0000000080002184 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002184 (0x13c13827) mem 0x0000000080022970 0x3f70000000000000 +core 0: 0x0000000080002188 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002188 (0x13113c27) mem 0x0000000080022978 0x3f80000000000000 +core 0: 0x000000008000218c (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x000000008000218c (0x15013027) mem 0x0000000080022980 0x3f90000000000000 +core 0: 0x0000000080002190 (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x0000000080002190 (0x14713427) mem 0x0000000080022988 0x3fa0000000000000 +core 0: 0x0000000080002194 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002194 (0x14613827) mem 0x0000000080022990 0x3fb0000000000000 +core 0: 0x0000000080002198 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002198 (0x14513c27) mem 0x0000000080022998 0x3fc0000000000000 +core 0: 0x000000008000219c (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x000000008000219c (0x16413027) mem 0x00000000800229a0 0x3fd0000000000000 +core 0: 0x00000000800021a0 (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x00000000800021a0 (0x16313427) mem 0x00000000800229a8 0x3fe0000000000000 +core 0: 0x00000000800021a4 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x00000000800021a4 (0x16213827) mem 0x00000000800229b0 0x3fe8000000000000 +core 0: 0x00000000800021a8 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x00000000800021a8 (0x16113c27) mem 0x00000000800229b8 0x3ff0000000000000 +core 0: 0x00000000800021ac (0xf2198753) fli.d (args unknown) +core 0: 3 0x00000000800021ac (0xf2198753) f14 0x3ffc000000000000 +core 0: 0x00000000800021b0 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x00000000800021b0 (0x18013027) mem 0x00000000800229c0 0x3ff4000000000000 +core 0: 0x00000000800021b4 (0xf21a0653) fli.d (args unknown) +core 0: 3 0x00000000800021b4 (0xf21a0653) f12 0x4000000000000000 +core 0: 0x00000000800021b8 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x00000000800021b8 (0x18a13427) mem 0x00000000800229c8 0x3ff8000000000000 +core 0: 0x00000000800021bc (0xf21a86d3) fli.d (args unknown) +core 0: 3 0x00000000800021bc (0xf21a86d3) f13 0x4004000000000000 +core 0: 0x00000000800021c0 (0x18e13827) fsd fa4, 400(sp) +core 0: 3 0x00000000800021c0 (0x18e13827) mem 0x00000000800229d0 0x3ffc000000000000 +core 0: 0x00000000800021c4 (0xf21b0753) fli.d (args unknown) +core 0: 3 0x00000000800021c4 (0xf21b0753) f14 0x4008000000000000 +core 0: 0x00000000800021c8 (0x18c13c27) fsd fa2, 408(sp) +core 0: 3 0x00000000800021c8 (0x18c13c27) mem 0x00000000800229d8 0x4000000000000000 +core 0: 0x00000000800021cc (0xf21b8653) fli.d (args unknown) +core 0: 3 0x00000000800021cc (0xf21b8653) f12 0x4010000000000000 +core 0: 0x00000000800021d0 (0x1ad13027) fsd fa3, 416(sp) +core 0: 3 0x00000000800021d0 (0x1ad13027) mem 0x00000000800229e0 0x4004000000000000 +core 0: 0x00000000800021d4 (0xf21c06d3) fli.d (args unknown) +core 0: 3 0x00000000800021d4 (0xf21c06d3) f13 0x4020000000000000 +core 0: 0x00000000800021d8 (0x1ae13427) fsd fa4, 424(sp) +core 0: 3 0x00000000800021d8 (0x1ae13427) mem 0x00000000800229e8 0x4008000000000000 +core 0: 0x00000000800021dc (0xf21c8753) fli.d (args unknown) +core 0: 3 0x00000000800021dc (0xf21c8753) f14 0x4030000000000000 +core 0: 0x00000000800021e0 (0x1ac13827) fsd fa2, 432(sp) +core 0: 3 0x00000000800021e0 (0x1ac13827) mem 0x00000000800229f0 0x4010000000000000 +core 0: 0x00000000800021e4 (0x1ad13c27) fsd fa3, 440(sp) +core 0: 3 0x00000000800021e4 (0x1ad13c27) mem 0x00000000800229f8 0x4020000000000000 +core 0: 0x00000000800021e8 (0xf21f06d3) fli.d (args unknown) +core 0: 3 0x00000000800021e8 (0xf21f06d3) f13 0x7ff0000000000000 +core 0: 0x00000000800021ec (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800021ec (0x1ce13027) mem 0x0000000080022a00 0x4030000000000000 +core 0: 0x00000000800021f0 (0xf21f8753) fli.d (args unknown) +core 0: 3 0x00000000800021f0 (0xf21f8753) f14 0x7ff8000000000000 +core 0: 0x00000000800021f4 (0x1cb13427) fsd fa1, 456(sp) +core 0: 3 0x00000000800021f4 (0x1cb13427) mem 0x0000000080022a08 0x4040000000000000 +core 0: 0x00000000800021f8 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800021f8 (0x1cd13827) mem 0x0000000080022a10 0x7ff0000000000000 +core 0: 0x00000000800021fc (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021fc (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002200 (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x0000000080002200 (0x1ce13c27) mem 0x0000000080022a18 0x7ff8000000000000 +core 0: 0x0000000080002204 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002204 (0xf4079ce3) +core 0: 0x0000000080002208 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002208 (0xc00027f3) x15 0x0000000000000ea5 +core 0: 0x000000008000220c (0xc00027f3) csrr a5, cycle +core 0: 3 0x000000008000220c (0xc00027f3) x15 0x0000000000000eae +core 0: 0x0000000080002210 (0x88818793) addi a5, gp, -1912 +core 0: 3 0x0000000080002210 (0x88818793) x15 0x0000000080002848 +core 0: 0x0000000080002214 (0x8d818693) addi a3, gp, -1832 +core 0: 3 0x0000000080002214 (0x8d818693) x13 0x0000000080002898 +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x41e0000000200000 mem 0x0000000080002848 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x41e0000000200000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x41e0000000200000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x41e0000000200000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x41e0000000200000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0xffffffff80000001 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0xffffffff80000001 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002850 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0xc1e0000000200000 mem 0x0000000080002850 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0xc1e0000000200000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0xc1e0000000200000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0xc1e0000000200000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0xc1e0000000200000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x000000007fffffff +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x000000007fffffff +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002858 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x41f0000000100000 mem 0x0000000080002858 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x41f0000000100000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x41f0000000100000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x41f0000000100000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x41f0000000100000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000001 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000001 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002860 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0xc1f0000000100000 mem 0x0000000080002860 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0xc1f0000000100000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0xc1f0000000100000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0xc1f0000000100000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0xc1f0000000100000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0xffffffffffffffff +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0xffffffffffffffff +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002868 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x400a000000000000 mem 0x0000000080002868 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x400a000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x400a000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x400a000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x400a000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000003 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000003 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002870 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x0000000000000000 mem 0x0000000080002870 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x0000000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x0000000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x0000000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x0000000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000000 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000000 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002878 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x8000000000000000 mem 0x0000000080002878 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x8000000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x8000000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x8000000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x8000000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000000 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000000 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002880 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x7ff0000000000000 mem 0x0000000080002880 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x7ff0000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x7ff0000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x7ff0000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x7ff0000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000000 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000000 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002888 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0xfff0000000000000 mem 0x0000000080002888 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0xfff0000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0xfff0000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0xfff0000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0xfff0000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000000 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000000 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002890 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x0000000080002218 (0x0007b787) fld fa5, 0(a5) +core 0: 3 0x0000000080002218 (0x0007b787) f15 0x7ff8000000000000 mem 0x0000000080002890 +core 0: 0x000000008000221c (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x000000008000221c (0x04f13c27) mem 0x0000000080022898 0x7ff8000000000000 +core 0: 0x0000000080002220 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002220 (0x05813787) f15 0x7ff8000000000000 mem 0x0000000080022898 +core 0: 0x0000000080002224 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002224 (0x04f13c27) mem 0x0000000080022898 0x7ff8000000000000 +core 0: 0x0000000080002228 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002228 (0x05813787) f15 0x7ff8000000000000 mem 0x0000000080022898 +core 0: 0x000000008000222c (0xc2879753) fcvtmod.w.d (args unknown) +core 0: 3 0x000000008000222c (0xc2879753) x14 0x0000000000000000 +core 0: 0x0000000080002230 (0x0007071b) sext.w a4, a4 +core 0: 3 0x0000000080002230 (0x0007071b) x14 0x0000000000000000 +core 0: 0x0000000080002234 (0x00878793) addi a5, a5, 8 +core 0: 3 0x0000000080002234 (0x00878793) x15 0x0000000080002898 +core 0: 0x0000000080002238 (0xfef690e3) bne a3, a5, pc - 32 +core 0: 3 0x0000000080002238 (0xfef690e3) +core 0: 0x000000008000223c (0xc00027f3) csrr a5, cycle +core 0: 3 0x000000008000223c (0xc00027f3) x15 0x0000000000000f9f +core 0: 0x0000000080002240 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002240 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080002244 (0x20813407) fld fs0, 520(sp) +core 0: 3 0x0000000080002244 (0x20813407) f8 0xffffffff00000000 mem 0x0000000080022a48 +core 0: 0x0000000080002248 (0x20013487) fld fs1, 512(sp) +core 0: 3 0x0000000080002248 (0x20013487) f9 0xffffffff00000000 mem 0x0000000080022a40 +core 0: 0x000000008000224c (0x1f813907) fld fs2, 504(sp) +core 0: 3 0x000000008000224c (0x1f813907) f18 0xffffffff00000000 mem 0x0000000080022a38 +core 0: 0x0000000080002250 (0x1f013987) fld fs3, 496(sp) +core 0: 3 0x0000000080002250 (0x1f013987) f19 0xffffffff00000000 mem 0x0000000080022a30 +core 0: 0x0000000080002254 (0x1e813a07) fld fs4, 488(sp) +core 0: 3 0x0000000080002254 (0x1e813a07) f20 0xffffffff00000000 mem 0x0000000080022a28 +core 0: 0x0000000080002258 (0x21010113) addi sp, sp, 528 +core 0: 3 0x0000000080002258 (0x21010113) x2 0x0000000080022a50 +core 0: 0x000000008000225c (0x00008067) ret +core 0: 3 0x000000008000225c (0x00008067) +core 0: 0x0000000080001cf4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cf4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001cf8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001cf8 (0x000a0493) x9 0x0000000080022a80 +core 0: 0x0000000080001cfc (0xdd018413) addi s0, gp, -560 +core 0: 3 0x0000000080001cfc (0xdd018413) x8 0x0000000080002d90 +core 0: 0x0000000080001d00 (0xce018913) addi s2, gp, -800 +core 0: 3 0x0000000080001d00 (0xce018913) x18 0x0000000080002ca0 +core 0: 0x0000000080001d04 (0xec018993) addi s3, gp, -320 +core 0: 3 0x0000000080001d04 (0xec018993) x19 0x0000000080002e80 +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ca0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002d90 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022a80 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002d90 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022a80 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022a80 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000000000f9f +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022a80 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022a80 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002ca0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a80 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a80 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a80 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a81 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a81 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a81 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a81 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a81 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a82 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a82 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a82 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a82 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a82 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a83 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a83 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a83 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a83 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a83 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a84 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a84 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a84 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a84 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a84 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a85 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a85 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a85 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a85 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a85 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a86 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a86 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a86 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a86 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a86 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a87 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a87 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a87 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a87 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a87 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a88 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a88 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a88 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a88 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a88 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a89 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a89 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a89 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a89 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a89 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8a 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022a80 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022a80 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ca0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022a8b mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022a8b 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022a8b mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002d90 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002d98 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002ca8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022a8b +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ca8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002d98 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022a8b +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002d98 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022a8b +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022a8b +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022a8b +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022a8b +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022a8b +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002ca8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8b 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8c 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8d 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a8f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a8f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a8f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a8f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a8f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a90 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a90 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a90 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a90 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a90 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a91 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a91 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a91 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a91 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a91 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a92 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a92 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a92 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a92 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a92 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a93 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a93 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a93 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a93 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a93 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a94 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a94 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a94 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a94 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a94 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a95 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a95 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a95 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a95 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a95 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a96 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a96 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022a8b mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022a8b mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ca8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022a96 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022a96 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022a96 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002d98 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002da0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cb0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022a96 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cb0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002da0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022a96 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002da0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022a96 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022a96 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022a96 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022a96 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022a96 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cb0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a96 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a96 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a96 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a97 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a97 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a97 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a97 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a97 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a98 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a98 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a98 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a98 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a98 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a99 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a99 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a99 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a99 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a99 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9b 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9d 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022a9f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022a9f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022a9f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022a9f 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022a9f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa0 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022a96 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022a96 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cb0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022aa1 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022aa1 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022aa1 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002da0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002da8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cb8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022aa1 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cb8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002da8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022aa1 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002da8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022aa1 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022aa1 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022aa1 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022aa1 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022aa1 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cb8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa1 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa2 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa3 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa4 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa5 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa6 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa7 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa8 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aa9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aa9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aa9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aa9 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aa9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aaa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aaa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aaa mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aaa 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aaa mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aab +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aab +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aab mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aab 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aab mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aac +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aac +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022aa1 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022aa1 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cb8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022aac mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022aac 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022aac mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002da8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002db0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cc0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022aac +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cc0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002db0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022aac +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002db0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022aac +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022aac +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022aac +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022aac +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022aac +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cc0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aac mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aac 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aac mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aad +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aad +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aad mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aad 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aad mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aae +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aae +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aae mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aae 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aae mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aaf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aaf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aaf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aaf 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aaf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab0 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab1 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab2 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab3 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab5 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab6 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022aac mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022aac mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cc0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ab7 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ab7 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ab7 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002db0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002db8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cc8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ab7 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cc8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002db8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ab7 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002db8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022ab7 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ab7 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022ab7 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022ab7 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022ab7 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cc8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab7 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab8 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ab9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ab9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ab9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ab9 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ab9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aba +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aba +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aba mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aba 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aba mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022abb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022abb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022abb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022abb 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022abb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022abc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022abc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022abc mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022abc 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022abc mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022abd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022abd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022abd mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022abd 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022abd mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022abe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022abe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022abe mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022abe 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022abe mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022abf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022abf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022abf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022abf 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022abf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac0 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac1 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ab7 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ab7 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cc8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ac2 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ac2 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ac2 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002db8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002dc0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cd0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ac2 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cd0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002dc0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ac2 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002dc0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022ac2 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ac2 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022ac2 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022ac2 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022ac2 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cd0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac2 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac3 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac4 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac5 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac6 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac7 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac8 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ac9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ac9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ac9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ac9 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ac9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aca +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aca +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aca mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aca 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aca mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022acb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022acb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022acb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022acb 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022acb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022acc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022acc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022acc mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022acc 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022acc mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022acd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022acd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ac2 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ac2 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cd0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022acd mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022acd 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022acd mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002dc0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002dc8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cd8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022acd +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cd8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002dc8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022acd +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002dc8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022acd +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022acd +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022acd +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022acd +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022acd +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cd8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022acd mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022acd 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022acd mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ace +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ace +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ace mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ace 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ace mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022acf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022acf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022acf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022acf 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022acf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad0 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad2 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad3 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad4 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad5 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad6 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad7 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022acd mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022acd mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cd8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ad8 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ad8 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ad8 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002dc8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002dd0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002ce0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ad8 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ce0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002dd0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ad8 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002dd0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022ad8 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ad8 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022ad8 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022ad8 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022ad8 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002ce0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad8 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ad9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ad9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ad9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ad9 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ad9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ada +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ada +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ada mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ada 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ada mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022adb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022adb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022adb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022adb 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022adb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022adc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022adc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022adc mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022adc 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022adc mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022add +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022add +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022add mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022add 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022add mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ade +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ade +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ade mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ade 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ade mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022adf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022adf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022adf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022adf 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022adf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae0 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae1 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae2 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ad8 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ad8 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ce0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ae3 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ae3 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ae3 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002dd0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002dd8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002ce8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ae3 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ce8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002dd8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ae3 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002dd8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022ae3 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ae3 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022ae3 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022ae3 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022ae3 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002ce8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae3 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae4 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae5 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae6 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae7 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae8 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ae9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ae9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ae9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ae9 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ae9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aea +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aea +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aea mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aea 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aea mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aeb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aeb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aeb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aeb 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aeb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aec +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aec +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aec mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aec 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aec mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aed +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aed +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aed mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aed 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aed mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aee +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aee +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ae3 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ae3 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ce8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022aee mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022aee 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022aee mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002dd8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002de0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cf0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022aee +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cf0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002de0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022aee +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002de0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022aee +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022aee +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022aee +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022aee +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022aee +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cf0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aee mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aee 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aee mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aef +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aef +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aef mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aef 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aef mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af0 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af3 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af5 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af6 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af7 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af8 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022af9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022af9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022aee mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022aee mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cf0 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022af9 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022af9 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022af9 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002de0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002de8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002cf8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022af9 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002cf8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002de8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022af9 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002de8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022af9 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022af9 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022af9 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022af9 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022af9 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002cf8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022af9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022af9 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022af9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022afa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022afa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022afa mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022afa 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022afa mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022afb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022afb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022afb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022afb 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022afb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022afc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022afc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022afc mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022afc 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022afc mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022afd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022afd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022afd mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022afd 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022afd mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022afe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022afe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022afe mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022afe 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022afe mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022aff +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022aff +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022aff mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022aff 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022aff mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b00 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b00 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b00 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b00 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b00 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b01 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b01 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b01 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b01 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b01 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b02 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b02 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b02 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b02 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b02 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b03 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b03 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b03 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b03 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b03 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b04 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b04 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022af9 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022af9 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002cf8 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b04 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b04 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b04 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002de8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002df0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d00 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b04 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d00 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002df0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b04 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002df0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b04 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b04 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b04 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b04 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b04 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d00 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b04 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b04 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b04 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b05 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b05 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b05 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b05 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b05 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b06 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b06 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b06 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b06 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b06 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b07 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b07 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b07 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b07 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b07 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b08 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b08 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b08 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b08 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b08 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b09 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b09 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b09 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b09 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b09 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0a 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0b 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0d 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0e 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b0f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b0f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b04 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b04 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d00 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b0f mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b0f 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b0f mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002df0 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002df8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d08 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b0f +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d08 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002df8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b0f +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002df8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b0f +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b0f +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b0f +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b0f +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b0f +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d08 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b0f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b0f 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b0f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b10 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b10 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b10 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b10 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b10 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b11 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b11 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b11 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b11 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b11 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b12 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b12 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b12 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b12 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b12 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b13 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b13 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b13 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b13 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b13 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b14 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b14 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b14 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b14 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b14 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b15 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b15 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b15 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b15 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b15 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b16 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b16 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b16 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b16 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b16 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b17 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b17 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b17 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b17 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b17 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b18 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b18 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b18 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b18 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b18 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b19 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b19 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b19 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b19 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b19 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b0f mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b0f mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d08 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b1a mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b1a 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b1a mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002df8 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e00 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d10 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b1a +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d10 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e00 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b1a +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e00 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b1a +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b1a +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b1a +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b1a +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b1a +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d10 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1a 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1b 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1c 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1d 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b1f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b1f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b1f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b1f 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b1f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b20 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b20 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b20 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b20 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b20 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b21 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b21 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b21 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b21 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b21 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b22 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b22 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b22 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b22 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b22 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b23 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b23 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b23 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b23 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b23 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b24 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b24 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b24 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b24 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b24 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b25 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b25 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b1a mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b1a mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d10 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b25 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b25 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b25 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e00 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e08 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d18 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b25 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d18 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e08 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b25 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e08 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b25 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b25 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b25 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b25 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b25 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d18 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b25 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b25 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b25 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b26 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b26 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b26 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b26 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b26 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b27 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b27 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b27 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b27 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b27 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b28 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b28 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b28 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b28 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b28 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b29 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b29 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b29 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b29 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b29 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2a 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2b 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2c 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2d 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2e 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b2f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b2f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b2f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b2f 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b2f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b30 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b30 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b25 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b25 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d18 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b30 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b30 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b30 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e08 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e10 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d20 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b30 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d20 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e10 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b30 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e10 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b30 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b30 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b30 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b30 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b30 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d20 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b30 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b30 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b30 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b31 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b31 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b31 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b31 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b31 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b32 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b32 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b32 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b32 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b32 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b33 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b33 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b33 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b33 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b33 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b34 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b34 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b34 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b34 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b34 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b35 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b35 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b35 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b35 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b35 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b36 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b36 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b36 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b36 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b36 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b37 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b37 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b37 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b37 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b37 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b38 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b38 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b38 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b38 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b38 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b39 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b39 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b39 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b39 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b39 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3a 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b30 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b30 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d20 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b3b mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b3b 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b3b mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e10 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e18 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d28 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b3b +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d28 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e18 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b3b +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e18 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b3b +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b3b +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b3b +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b3b +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b3b +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d28 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3b 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3c 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3d 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b3f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b3f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b3f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b3f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b3f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b40 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b40 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b40 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b40 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b40 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b41 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b41 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b41 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b41 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b41 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b42 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b42 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b42 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b42 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b42 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b43 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b43 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b43 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b43 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b43 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b44 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b44 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b44 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b44 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b44 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b45 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b45 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b45 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b45 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b45 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b46 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b46 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b3b mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b3b mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d28 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b46 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b46 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b46 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e18 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e20 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d30 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b46 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d30 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e20 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b46 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e20 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b46 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b46 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b46 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b46 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b46 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d30 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b46 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b46 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b46 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b47 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b47 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b47 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b47 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b47 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b48 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b48 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b48 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b48 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b48 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b49 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b49 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b49 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b49 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b49 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4b 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4d 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b4f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b4f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b4f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b4f 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b4f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b50 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b50 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b50 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b50 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b50 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b51 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b51 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b46 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b46 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d30 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b51 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b51 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b51 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e20 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e28 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d38 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b51 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d38 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e28 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b51 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e28 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b51 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b51 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b51 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b51 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b51 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d38 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b51 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b51 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b51 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b52 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b52 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b52 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b52 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b52 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b53 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b53 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b53 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b53 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b53 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b54 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b54 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b54 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b54 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b54 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b55 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b55 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b55 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b55 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b55 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b56 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b56 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b56 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b56 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b56 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b57 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b57 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b57 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b57 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b57 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b58 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b58 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b58 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b58 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b58 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b59 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b59 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b59 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b59 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b59 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5a 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5b 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b51 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b51 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d38 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b5c mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b5c 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b5c mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e28 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e30 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d40 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b5c +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d40 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e30 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b5c +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e30 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b5c +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b5c +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b5c +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b5c +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b5c +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d40 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5c 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5d 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5e 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b5f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b5f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b5f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b5f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b5f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b60 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b60 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b60 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b60 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b60 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b61 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b61 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b61 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b61 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b61 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b62 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b62 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b62 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b62 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b62 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b63 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b63 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b63 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b63 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b63 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b64 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b64 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b64 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b64 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b64 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b65 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b65 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b65 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b65 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b65 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b66 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b66 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b66 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b66 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b66 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b67 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b67 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b5c mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b5c mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d40 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b67 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b67 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b67 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e30 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e38 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d48 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b67 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d48 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e38 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b67 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e38 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b67 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b67 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b67 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b67 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b67 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d48 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b67 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b67 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b67 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b68 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b68 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b68 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b68 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b68 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b69 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b69 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b69 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b69 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b69 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6b 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6c 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6d 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6e 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b6f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b6f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b6f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b6f 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b6f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b70 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b70 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b70 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b70 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b70 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b71 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b71 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b71 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b71 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b71 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b72 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b72 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b67 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b67 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d48 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b72 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b72 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b72 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e38 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e40 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d50 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b72 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d50 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e40 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b72 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e40 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b72 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b72 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b72 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b72 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b72 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d50 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b72 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b72 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b72 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b73 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b73 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b73 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b73 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b73 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b74 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b74 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b74 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b74 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b74 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b75 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b75 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b75 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b75 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b75 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b76 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b76 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b76 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b76 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b76 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b77 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b77 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b77 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b77 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b77 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b78 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b78 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b78 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b78 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b78 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b79 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b79 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b79 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b79 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b79 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7a 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7b 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7c 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b72 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b72 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d50 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b7d mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b7d 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b7d mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e40 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e48 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d58 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b7d +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d58 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e48 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b7d +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e48 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b7d +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b7d +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b7d +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b7d +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b7d +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d58 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7d 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7e 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b7f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b7f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b7f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b7f 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b7f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b80 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b80 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b80 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b80 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b80 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b81 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b81 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b81 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b81 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b81 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b82 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b82 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b82 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b82 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b82 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b83 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b83 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b83 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b83 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b83 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b84 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b84 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b84 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b84 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b84 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b85 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b85 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b85 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b85 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b85 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b86 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b86 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b86 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b86 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b86 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b87 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b87 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b87 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b87 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b87 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b88 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b88 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b7d mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b7d mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d58 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b88 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b88 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b88 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e48 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e50 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d60 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b88 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d60 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e50 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b88 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e50 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b88 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b88 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b88 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b88 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b88 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d60 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b88 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b88 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b88 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b89 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b89 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b89 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b89 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b89 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8a 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8b 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8c 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8d 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b8f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b8f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b8f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b8f 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b8f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b90 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b90 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b90 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b90 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b90 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b91 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b91 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b91 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b91 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b91 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b92 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b92 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b92 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b92 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b92 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b93 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b93 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b88 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b88 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d60 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b93 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b93 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b93 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e50 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e58 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d68 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b93 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d68 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e58 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b93 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e58 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b93 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b93 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b93 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b93 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b93 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d68 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b93 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b93 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b93 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b94 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b94 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b94 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b94 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b94 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b95 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b95 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b95 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b95 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b95 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b96 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b96 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b96 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b96 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b96 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b97 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b97 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b97 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b97 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b97 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b98 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b98 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b98 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b98 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b98 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b99 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b99 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b99 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b99 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b99 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9a mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9a 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9a mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9b mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9b 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9b mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9c mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9c 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9c mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9d mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9d 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9d mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b93 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b93 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d68 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022b9e mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022b9e 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022b9e mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e58 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e60 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d70 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022b9e +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d70 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e60 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022b9e +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e60 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022b9e +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022b9e +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022b9e +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022b9e +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022b9e +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d70 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9e mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9e 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9e mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022b9f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022b9f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022b9f mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022b9f 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022b9f mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba0 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba3 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba5 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba6 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba7 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba8 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ba9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022ba9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022b9e mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022b9e mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d70 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ba9 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ba9 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ba9 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e60 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e68 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d78 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ba9 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d78 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e68 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ba9 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e68 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022ba9 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ba9 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022ba9 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022ba9 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022ba9 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d78 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ba9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ba9 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ba9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022baa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022baa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022baa mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022baa 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022baa mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bab +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bab +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bab mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bab 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bab mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bac +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bac +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bac mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bac 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bac mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bad +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bad +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bad mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bad 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bad mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bae +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bae +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bae mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bae 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bae mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022baf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022baf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022baf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022baf 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022baf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb0 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb1 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb2 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb3 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ba9 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ba9 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d78 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022bb4 mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022bb4 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022bb4 mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e68 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e70 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d80 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022bb4 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d80 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e70 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022bb4 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e70 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022bb4 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022bb4 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022bb4 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022bb4 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022bb4 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d80 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb4 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb5 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb6 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb7 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb8 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bb9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bb9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bb9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bb9 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bb9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bba +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bba +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bba mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bba 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bba mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bbb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bbb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bbb mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bbb 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bbb mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bbc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bbc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bbc mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bbc 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bbc mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bbd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bbd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bbd mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bbd 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bbd mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bbe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bbe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bbe mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bbe 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bbe mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bbf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bbf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022bb4 mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022bb4 mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d80 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022bbf mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022bbf 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022bbf mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e70 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e78 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d88 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022bbf +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002d88 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080002e78 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022bbf +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0xf6458593) addi a1, a1, -156 +core 0: 3 0x0000000080001d18 (0xf6458593) x11 0x0000000080002c78 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x00000000800229f0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022a20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022a10 0x0000000080002e78 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x00000000800229f8 0x0000000080022bbf +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022a20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022a28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022bbf +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002c78 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x00000000800229f8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022a20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022a18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022a38 0x0000000080022bbf +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022a30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022a40 0x0000000000000000 +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022a48 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022a08 0x0000000080022a20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022890 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x00000000800229e0 0x0000000080022bbf +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x00000000800229d8 0x0000000080022bbf +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x00000000800229d0 0x0000000080002d88 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x00000000800229c0 0x0000000080022a80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x00000000800229b8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x00000000800229b0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x00000000800229a8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x00000000800229e8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x00000000800229c8 0x0000000080002e80 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x00000000800229a0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022998 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022990 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002c78 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022a20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x00000000800229f8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x8d818b13) addi s6, gp, -1832 +core 0: 3 0x000000008000107c (0x8d818b13) x22 0x0000000080002898 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c78 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002c79 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c79 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c79 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7a +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029d8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffea38 mem 0x00000000800029d8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022a20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022a28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013a0 (0x00001c17) x24 0x00000000800023a0 +core 0: 0x00000000800013a4 (0x650c0c13) addi s8, s8, 1616 +core 0: 3 0x00000000800013a4 (0x650c0c13) x24 0x00000000800029f0 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bbf mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bbf 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bbf mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x00000000800029f1 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f1 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc0 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc0 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc0 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800029f2 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f2 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc1 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc1 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc1 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f3 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f3 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc2 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc2 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x00000000800029f4 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f4 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc3 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc3 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc3 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800029f5 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f5 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc4 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc4 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc4 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800029f6 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x00000000800029f6 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7a +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7b +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc5 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc5 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc5 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002c7b +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7c +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc6 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc6 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc6 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002c7c +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c7d +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc7 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc7 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc7 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002c7d +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002c7e +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002c7e +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002c7e +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002c7f +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x00000000800029e0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffeadc mem 0x00000000800029e0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022a30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022a28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022a30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022894 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022890 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022890 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x000000008002288c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022890 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x00000000800229f8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x000000008002288c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc8 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc8 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc8 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bc9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bc9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002c7f +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x00000000800229f8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002c80 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022bc9 mem 0x00000000800229f8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022bc9 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022bc9 mem 0x00000000800229f8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022bca +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x00000000800229f8 0x0000000080022bca +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002c80 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x00000000800229e8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022bbf mem 0x00000000800229e0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022bbf mem 0x00000000800229d8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002d88 mem 0x00000000800229d0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080002e80 mem 0x00000000800229c8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022a80 mem 0x00000000800229c0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800229b8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800229b0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800229a8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800229a0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022998 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022990 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x00000000800229f0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022bca mem 0x00000000800229f8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022bca 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022bca mem 0x00000000800229f8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022a18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080002e78 mem 0x0000000080022a10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022a50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080002e80 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002d90 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022bca +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d30 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d30 (0x009a0663) +core 0: 0x0000000080001d34 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d34 (0x000a0513) x10 0x0000000080022a80 +core 0: 0x0000000080001d38 (0xc09ff0ef) jal pc - 0x3f8 +core 0: 3 0x0000000080001d38 (0xc09ff0ef) x1 0x0000000080001d3c 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: 0x0000000080001940 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001940 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022a80 +core 0: 0x0000000080001944 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001944 (0xf9010113) x2 0x00000000800229e0 +core 0: 0x0000000080001948 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001948 (0x03f10693) x13 0x0000000080022a1f +core 0: 0x000000008000194c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000194c (0xfc06f693) x13 0x0000000080022a00 +core 0: 0x0000000080001950 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001950 (0x00078c63) +core 0: 0x0000000080001954 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001954 (0x00050793) x15 0x0000000080022a80 +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022a81 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a81 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022a82 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a82 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a83 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a83 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a84 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a84 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022a85 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a85 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a86 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a86 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022a87 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a87 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a88 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a88 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022a89 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a89 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022a8a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022a8b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022a8c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022a8d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a8e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a8f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a8f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022a90 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a90 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a91 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a91 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022a92 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a92 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a93 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a93 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022a94 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a94 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022a95 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a95 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022a96 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a96 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022a97 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a97 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022a98 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a98 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a99 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a99 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022a9a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022a9b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a9c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022a9d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022a9e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022a9f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022a9f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022aa0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022aa1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022aa2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022aa3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022aa4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022aa5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022aa6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022aa7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022aa8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022aa9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aa9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022aaa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aaa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022aab +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aab +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022aac +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aac +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022aad +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aad +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022aae +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aae +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022aaf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aaf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ab0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ab1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ab2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ab3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ab4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ab5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ab6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ab7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ab8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ab9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ab9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022aba +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aba +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022abb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022abb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022abc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022abc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022abd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022abd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022abe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022abe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022abf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022abf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ac0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ac1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ac2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ac3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ac4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ac5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ac6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ac7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ac8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ac9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ac9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022aca +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aca +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022acb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022acb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022acc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022acc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022acd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022acd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ace +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ace +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022acf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022acf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ad0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ad1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ad2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ad3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ad4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ad5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ad6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ad7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ad8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ad9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ad9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ada +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ada +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022adb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022adb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022adc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022adc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022add +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022add +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ade +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ade +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022adf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022adf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ae0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ae1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ae2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ae3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ae4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ae5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ae6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ae7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ae8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ae9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ae9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022aea +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aea +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022aeb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aeb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022aec +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aec +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022aed +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aed +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022aee +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aee +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022aef +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aef +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022af0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022af1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022af2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022af3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022af4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022af5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022af6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022af7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022af8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022af9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022af9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022afa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022afa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022afb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022afb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022afc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022afc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022afd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022afd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022afe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022afe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022aff +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022aff +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b00 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b00 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b01 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b01 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b02 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b02 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b03 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b03 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b04 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b04 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b05 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b05 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b06 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b06 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b07 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b07 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b08 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b08 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b09 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b09 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b0a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b0b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b0c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b0d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b0e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b0f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b0f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b10 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b10 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b11 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b11 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b12 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b12 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b13 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b13 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b14 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b14 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b15 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b15 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b16 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b16 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b17 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b17 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b18 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b18 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b19 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b19 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b1a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b1b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b1c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b1d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b1e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b1f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b1f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b20 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b20 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b21 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b21 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b22 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b22 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b23 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b23 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b24 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b24 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b25 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b25 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b26 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b26 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b27 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b27 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b28 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b28 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b29 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b29 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b2a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b2b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b2c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b2d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b2e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b2f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b2f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b30 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b30 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b31 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b31 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b32 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b32 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b33 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b33 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b34 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b34 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b35 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b35 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b36 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b36 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b37 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b37 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b38 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b38 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b39 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b39 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b3a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b3b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b3c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b3d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b3e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b3f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b3f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b40 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b40 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b41 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b41 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b42 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b42 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b43 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b43 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b44 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b44 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b45 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b45 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b46 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b46 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b47 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b47 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b48 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b48 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b49 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b49 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b4a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b4b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b4c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b4d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b4e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b4f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b4f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b50 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b50 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b51 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b51 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b52 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b52 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b53 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b53 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b54 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b54 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b55 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b55 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b56 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b56 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b57 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b57 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b58 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b58 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b59 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b59 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b5a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b5b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b5c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b5d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b5e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b5f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b5f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b60 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b60 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b61 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b61 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b62 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b62 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b63 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b63 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b64 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b64 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b65 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b65 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b66 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b66 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b67 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b67 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b68 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b68 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b69 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b69 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b6a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b6b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b6c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b6d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b6e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b6f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b6f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b70 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b70 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b71 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b71 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b72 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b72 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b73 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b73 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b74 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b74 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b75 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b75 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b76 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b76 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b77 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b77 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b78 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b78 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b79 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b79 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b7a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b7b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b7c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b7d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b7e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b7f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b7f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b80 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b80 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b81 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b81 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b82 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b82 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b83 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b83 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b84 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b84 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b85 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b85 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b86 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b86 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b87 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b87 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b88 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b88 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b89 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b89 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b8a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b8b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b8c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b8d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b8e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b8f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b8f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b90 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b90 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b91 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b91 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b92 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b92 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b93 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b93 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b94 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b94 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022b95 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b95 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b96 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b96 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022b97 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b97 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022b98 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b98 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b99 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b99 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022b9a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022b9b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022b9c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022b9d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022b9e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022b9f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022b9f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ba0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ba1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ba2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ba3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ba4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ba5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ba6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ba7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ba8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ba9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ba9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022baa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022baa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022bab +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bab +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bac +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bac +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bad +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bad +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022bae +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bae +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022baf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022baf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022bb0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022bb1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022bb2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022bb3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022bb4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022bb5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022bb6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bb7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bb8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022bb9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bb9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022bba +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bba +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022bbb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bbb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022bbc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bbc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022bbd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bbd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022bbe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bbe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022bbf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bbf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022bc0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022bc1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bc2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022bc3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022bc4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022bc5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022bc6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022bc7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022bc8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022bc9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bc9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000000 mem 0x0000000080022bca +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022bca +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001964 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001964 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001968 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001968 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000196c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000196c (0x00e6b023) mem 0x0000000080022a00 0x0000000000000040 +core 0: 0x0000000080001970 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001970 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001974 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001974 (0x00e6b423) mem 0x0000000080022a08 0x0000000000000001 +core 0: 0x0000000080001978 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001978 (0x00a6b823) mem 0x0000000080022a10 0x0000000080022a80 +core 0: 0x000000008000197c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000197c (0x00f6bc23) mem 0x0000000080022a18 0x000000000000014a +core 0: 0x0000000080001980 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001980 (0x0330000f) +core 0: 0x0000000080001984 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001984 (0xbfffe717) x14 0x000000003ffff984 +core 0: 0x0000000080001988 (0x6bc70713) addi a4, a4, 1724 +core 0: 3 0x0000000080001988 (0x6bc70713) x14 0x0000000040000040 +core 0: 0x000000008000198c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000198c (0xbfffe797) x15 0x000000003ffff98c +core 0: 0x0000000080001990 (0x66d7ba23) sd a3, 1652(a5) +core 0: 3 0x0000000080001990 (0x66d7ba23) mem 0x0000000040000000 0x0000000080022a00 +core 0: 0x0000000080001994 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001994 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001998 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001998 (0xfe078ee3) +core 0: 0x000000008000199c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000199c (0xbfffe797) x15 0x000000003ffff99c +core 0: 0x00000000800019a0 (0x6a07b223) sd zero, 1700(a5) +core 0: 3 0x00000000800019a0 (0x6a07b223) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x00000000800019a4 (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019a4 (0x0330000f) +core 0: 0x00000000800019a8 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x00000000800019a8 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022a00 +core 0: 0x00000000800019ac (0x07010113) addi sp, sp, 112 +core 0: 3 0x00000000800019ac (0x07010113) x2 0x0000000080022a50 +core 0: 0x00000000800019b0 (0x00008067) ret +core 0: 3 0x00000000800019b0 (0x00008067) +core 0: 0x0000000080001d3c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d3c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d40 (0xbbdff0ef) jal pc - 0x444 +core 0: 3 0x0000000080001d40 (0xbbdff0ef) x1 0x0000000080001d44 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) +core 0: 0x00000000800018fc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018fc (0x00151793) x15 0x0000000000000000 +core 0: 0x0000000080001900 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x0000000080001900 (0x0017e793) x15 0x0000000000000001 +core 0: 0x0000000080001904 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001904 (0xbfffe717) x14 0x000000003ffff904 +core 0: 0x0000000080001908 (0x6ef73e23) sd a5, 1788(a4) +core 0: 3 0x0000000080001908 (0x6ef73e23) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x000000008000190c (0x0000006f) j pc + 0x0 +core 0: 3 0x000000008000190c (0x0000006f) diff --git a/traces/with_zfhmin.txt b/traces/with_zfhmin.txt index 91e64b1..15ebba2 100644 --- a/traces/with_zfhmin.txt +++ b/traces/with_zfhmin.txt @@ -163,8 +163,8 @@ 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: 0x0000000080000144 (0x5c818193) addi gp, gp, 1480 +core 0: 3 0x0000000080000144 (0x5c818193) x3 0x0000000080002708 core 0: 0x0000000080000148 (0x00002217) auipc tp, 0x2 core 0: 3 0x0000000080000148 (0x00002217) x4 0x0000000080002148 core 0: 0x000000008000014c (0x3f720213) addi tp, tp, 1015 @@ -187,723 +187,4838 @@ 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: 0x0000000080000174 (0x2610106f) j pc + 0x1a60 +core 0: 3 0x0000000080000174 (0x2610106f) 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: 0x0000000080001bd4 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bd4 (0xbd010113) x2 0x00000000800220d0 +core 0: 0x0000000080001bd8 (0xde018793) addi a5, gp, -544 +core 0: 3 0x0000000080001bd8 (0xde018793) x15 0x00000000800024e8 +core 0: 0x0000000080001bdc (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bdc (0x42813023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001be0 (0xde018413) addi s0, gp, -544 +core 0: 3 0x0000000080001be0 (0xde018413) x8 0x00000000800024e8 +core 0: 0x0000000080001be4 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001be4 (0x40913c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001be8 (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001be8 (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001bec (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001bec (0x41213823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001bf0 (0x41313423) mem 0x00000000800224d8 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001bf4 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001bf8 (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001bfc (0x00020513) mv a0, tp +core 0: 3 0x0000000080001bfc (0x00020513) x10 0x0000000080002500 +core 0: 0x0000000080001c00 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c00 (0x00078593) x11 0x00000000800024e8 +core 0: 0x0000000080001c04 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c04 (0x00048613) x12 0x0000000000000000 +core 0: 0x0000000080001c08 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c08 (0x42113423) mem 0x00000000800224f8 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c0c (0x41413023) mem 0x00000000800224d0 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: 0x0000000080001c14 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c14 (0x00020a93) x21 0x0000000080002500 +core 0: 0x0000000080001c18 (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c18 (0xe91ff0ef) x1 0x0000000080001c1c +core 0: >>>> memcpy +core 0: 0x0000000080001aa8 (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001aa8 (0x00c5e7b3) x15 0x00000000800024e8 +core 0: 0x0000000080001aac (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001aac (0x00f567b3) x15 0x00000000800025e8 +core 0: 0x0000000080001ab0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ab0 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ab4 (0x00058393) x7 0x00000000800024e8 +core 0: 0x0000000080001ab8 (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001ab8 (0x00c506b3) x13 0x0000000080002500 +core 0: 0x0000000080001abc (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001abc (0x02078463) +core 0: 0x0000000080001ae4 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001ae4 (0x04050713) x14 0x0000000080002540 +core 0: 0x0000000080001ae8 (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001ae8 (0x08d77463) +core 0: 0x0000000080001b70 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b70 (0x00050793) x15 0x0000000080002500 +core 0: 0x0000000080001b74 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001b74 (0xfddff06f) +core 0: 0x0000000080001b50 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b50 (0xf8d7f8e3) +core 0: 0x0000000080001ae0 (0x00008067) ret +core 0: 3 0x0000000080001ae0 (0x00008067) +core 0: 0x0000000080001c1c (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c1c (0x00001617) x12 0x0000000080002c1c +core 0: 0x0000000080001c20 (0x92860613) addi a2, a2, -1752 +core 0: 3 0x0000000080001c20 (0x92860613) x12 0x0000000080002544 +core 0: 0x0000000080001c24 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c24 (0x40860633) x12 0x000000000000005c +core 0: 0x0000000080001c28 (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c28 (0x009a8533) x10 0x0000000080002500 +core 0: 0x0000000080001c2c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c2c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c30 (0xf49ff0ef) x1 0x0000000080001c34 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: 0x0000000080001b78 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c567b3) x15 0x000000008000255c +core 0: 0x0000000080001b7c (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b7c (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b80 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001b80 (0x00c50633) x12 0x000000008000255c +core 0: 0x0000000080001b84 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001b84 (0x00078e63) 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: 0x0000000080001b8c (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001b8c (0x04c57263) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002501 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002500 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002502 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002501 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002503 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002502 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002504 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002503 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002505 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002504 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002506 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002505 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002507 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002506 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002508 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002507 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002509 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002508 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002509 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000250f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002510 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000250f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002511 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002510 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002512 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002511 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002513 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002512 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002514 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002513 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002515 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002514 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002516 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002515 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002517 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002516 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002518 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002517 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002519 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002518 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002519 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000251f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002520 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000251f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002521 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002520 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002522 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002521 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002523 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002522 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002524 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002523 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002525 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002524 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002526 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002525 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002527 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002526 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002528 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002527 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002529 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002528 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002529 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000252f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002530 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000252f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002531 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002530 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002532 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002531 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002533 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002532 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002534 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002533 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002535 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002534 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002536 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002535 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002537 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002536 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002538 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002537 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002539 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002538 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002539 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000253f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002540 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000253f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002541 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002540 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002542 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002541 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002543 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002542 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002544 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002543 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002545 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002544 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002546 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002545 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002547 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002546 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002548 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002547 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002549 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002548 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002549 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000254f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002550 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000254f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002551 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002550 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002552 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002551 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002553 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002552 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002554 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002553 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002555 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002554 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002556 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002555 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002557 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002556 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002558 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002557 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002559 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002558 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000255a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002559 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000255b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000255a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000255c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000255b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b9c (0x00008067) ret +core 0: 3 0x0000000080001b9c (0x00008067) +core 0: 0x0000000080001c34 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c34 (0x03f10a13) x20 0x000000008002210f +core 0: 0x0000000080001c38 (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c38 (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c3c (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c3c (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c40 (0xd45ff0ef) jal pc - 0x2bc +core 0: 3 0x0000000080001c40 (0xd45ff0ef) x1 0x0000000080001c44 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: 0x0000000080001c44 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c44 (0xfc0a7a13) x20 0x0000000080022100 +core 0: 0x0000000080001c48 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c48 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c4c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c4c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c50 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c50 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c54 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c54 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c58 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c58 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c5c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c5c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c60 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c60 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c64 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c64 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c68 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c68 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c6c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c6c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c70 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c70 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c74 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c74 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c78 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c78 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c7c (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c7c (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c80 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c80 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c84 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c84 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001c88 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001c88 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001c8c (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001c8c (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001c90 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001c90 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001c94 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001c94 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001c98 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001c98 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001c9c (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001c9c (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001ca0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001ca0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001ca4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001ca4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001ca8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001ca8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cac (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cac (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cb0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cb0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cb4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cb4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cb8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cb8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cbc (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cbc (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cc0 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cc0 (0x16c000ef) x1 0x0000000080001cc4 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: 0x0000000080001e2c (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e2c (0x00000797) x15 0x0000000080001e2c +core 0: 0x0000000080001e30 (0x0e879787) flh fa5, 232(a5) +core 0: 3 0x0000000080001e30 (0x0e879787) f15 0xffffffffffff4280 mem 0x0000000080001f14 +core 0: 0x0000000080001e34 (0xfe010113) addi sp, sp, -32 +core 0: 3 0x0000000080001e34 (0xfe010113) x2 0x00000000800220b0 +core 0: 0x0000000080001e38 (0x00f11327) fsh fa5, 6(sp) +core 0: 3 0x0000000080001e38 (0x00f11327) mem 0x00000000800220b6 0x4280 +core 0: 0x0000000080001e3c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e3c (0xc00027f3) x15 0x0000000000000532 +core 0: 0x0000000080001e40 (0x06400793) li a5, 100 +core 0: 3 0x0000000080001e40 (0x06400793) x15 0x0000000000000064 +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000063 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000062 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000061 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000060 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000005a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000059 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000058 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000057 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000056 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000055 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000054 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000053 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000052 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000051 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000050 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000004a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000049 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000048 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000047 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000046 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000045 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000044 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000043 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000042 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000041 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000040 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000003a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000039 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000038 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000037 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000036 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000035 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000034 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000033 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000032 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000031 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000030 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000002a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000029 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000028 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000027 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000026 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000025 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000024 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000023 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000022 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000021 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000020 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000001a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000019 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000018 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000017 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000016 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000015 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000014 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000013 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000012 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000011 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000010 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000f +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000e +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000d +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000c +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000b +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x000000000000000a +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e44 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e44 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e48 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e48 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e4c (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e50 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e50 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e54 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e54 (0xfe0798e3) +core 0: 0x0000000080001e58 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e58 (0xc00027f3) x15 0x0000000000000895 +core 0: 0x0000000080001e5c (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e5c (0x00000797) x15 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x0b47a787) flw fa5, 180(a5) +core 0: 3 0x0000000080001e60 (0x0b47a787) f15 0xffffffff40500000 mem 0x0000000080001f10 +core 0: 0x0000000080001e64 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e64 (0x00f12627) mem 0x00000000800220bc 0x40500000 +core 0: 0x0000000080001e68 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e68 (0xc00027f3) x15 0x00000000000008af +core 0: 0x0000000080001e6c (0x06400793) li a5, 100 +core 0: 3 0x0000000080001e6c (0x06400793) x15 0x0000000000000064 +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000063 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000062 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000061 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000060 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000005a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000059 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000058 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000057 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000056 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000055 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000054 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000053 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000052 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000051 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000050 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000004a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000049 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000048 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000047 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000046 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000045 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000044 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000043 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000042 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000041 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000040 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000003a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000039 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000038 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000037 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000036 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000035 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000034 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000033 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000032 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000031 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000030 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000002a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000029 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000028 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000027 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000026 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000025 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000024 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000023 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000022 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000021 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000020 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000001a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000019 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000018 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000017 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000016 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000015 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000014 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000013 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000012 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000011 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000010 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000f +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000e +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000d +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000c +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000b +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x000000000000000a +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e70 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e70 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e78 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e7c (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e7c (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e80 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e80 (0xfe0798e3) +core 0: 0x0000000080001e84 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e84 (0xc00027f3) x15 0x0000000000000bf9 +core 0: 0x0000000080001e88 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e88 (0xc00027f3) x15 0x0000000000000c02 +core 0: 0x0000000080001e8c (0x06400793) li a5, 100 +core 0: 3 0x0000000080001e8c (0x06400793) x15 0x0000000000000064 +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000063 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000062 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000061 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000060 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000005a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000059 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000058 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000057 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000056 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000055 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000054 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000053 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000052 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000051 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000050 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000004a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000049 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000048 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000047 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000046 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000045 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000044 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000043 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000042 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000041 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000040 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000003a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000039 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000038 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000037 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000036 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000035 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000034 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000033 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000032 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000031 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000030 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000002a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000029 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000028 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000027 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000026 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000025 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000024 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000023 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000022 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000021 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000020 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000001a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000019 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000018 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000017 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000016 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000015 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000014 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000013 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000012 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000011 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000010 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000f +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000e +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000d +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000c +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000b +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x000000000000000a +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001e90 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e90 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e94 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e94 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e98 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001e98 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e9c (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001e9c (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001ea0 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ea0 (0xfe0798e3) +core 0: 0x0000000080001ea4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ea4 (0xc00027f3) x15 0x0000000000000f3a +core 0: 0x0000000080001ea8 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001ea8 (0x00000797) x15 0x0000000080001ea8 +core 0: 0x0000000080001eac (0x0607b787) fld fa5, 96(a5) +core 0: 3 0x0000000080001eac (0x0607b787) f15 0x400a000000000000 mem 0x0000000080001f08 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x00000000800220c8 0x400a000000000000 +core 0: 0x0000000080001eb4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001eb4 (0xc00027f3) x15 0x0000000000000f54 +core 0: 0x0000000080001eb8 (0x06400793) li a5, 100 +core 0: 3 0x0000000080001eb8 (0x06400793) x15 0x0000000000000064 +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000063 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000062 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000061 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000060 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000005a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000059 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000058 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000057 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000056 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000055 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000054 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000053 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000052 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000051 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000050 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000004a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000049 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000048 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000047 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000046 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000045 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000044 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000043 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000042 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000041 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000040 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000003a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000039 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000038 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000037 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000036 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000035 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000034 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000033 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000032 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000031 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000030 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000002a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000029 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000028 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000027 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000026 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000025 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000024 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000023 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000022 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000021 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000020 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000001a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000019 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000018 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000017 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000016 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000015 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000014 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000013 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000012 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000011 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000010 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000f +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000e +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000d +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000c +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000b +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x000000000000000a +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ebc (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ebc (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ec0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec0 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ec4 (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ec8 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ec8 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ecc (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ecc (0xfe0798e3) +core 0: 0x0000000080001ed0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed0 (0xc00027f3) x15 0x00000000000012b7 +core 0: 0x0000000080001ed4 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001ed4 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x02010113) addi sp, sp, 32 +core 0: 3 0x0000000080001ed8 (0x02010113) x2 0x00000000800220d0 +core 0: 0x0000000080001edc (0x00008067) ret +core 0: 3 0x0000000080001edc (0x00008067) +core 0: 0x0000000080001cc4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cc4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001cc8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001cc8 (0x000a0493) x9 0x0000000080022100 +core 0: 0x0000000080001ccc (0xcf018413) addi s0, gp, -784 +core 0: 3 0x0000000080001ccc (0xcf018413) x8 0x00000000800023f8 +core 0: 0x0000000080001cd0 (0xc0018913) addi s2, gp, -1024 +core 0: 3 0x0000000080001cd0 (0xc0018913) x18 0x0000000080002308 +core 0: 0x0000000080001cd4 (0xde018993) addi s3, gp, -544 +core 0: 3 0x0000000080001cd4 (0xde018993) x19 0x00000000800024e8 +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002308 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800023f8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022100 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800023f8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022100 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022100 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000000012b7 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000080002540 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -912,7 +5027,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002308 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) @@ -922,9 +5037,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -934,31 +5049,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -970,41 +5085,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -1027,9 +5140,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1054,9 +5167,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1081,9 +5194,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1108,9 +5221,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1135,9 +5248,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1162,9 +5275,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1172,7 +5285,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1180,7 +5293,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1197,7 +5310,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1205,7 +5318,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1222,7 +5335,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1230,7 +5343,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1247,17 +5360,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -1269,35 +5382,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -1314,26 +5427,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022109 mem 0x0000000080022078 @@ -1347,12 +5464,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1360,7 +5477,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1377,21 +5494,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002308 mem 0x0000000080022050 core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -1410,81 +5527,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002210b mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002210b 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002210b mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800023f8 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002400 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002310 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002210b +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002400 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002210b +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002400 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002210b +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002210b +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002210b +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -1493,7 +5610,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002310 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) @@ -1503,9 +5620,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -1515,31 +5632,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -1551,41 +5668,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -1608,9 +5723,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1635,9 +5750,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1662,9 +5777,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1689,9 +5804,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1716,9 +5831,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1743,9 +5858,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -1753,7 +5868,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1761,7 +5876,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1778,7 +5893,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1786,7 +5901,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1803,7 +5918,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1811,7 +5926,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1828,17 +5943,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -1850,35 +5965,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -1895,26 +6010,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022114 mem 0x0000000080022078 @@ -1928,12 +6047,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -1941,7 +6060,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -1958,21 +6077,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002310 mem 0x0000000080022050 core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -1991,81 +6110,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022116 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002400 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002408 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002318 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022116 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002408 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022116 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002408 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022116 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022116 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022116 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -2074,7 +6193,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002318 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) @@ -2084,9 +6203,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -2096,31 +6215,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -2132,41 +6251,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -2189,9 +6306,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2216,9 +6333,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2243,9 +6360,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2270,9 +6387,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2297,9 +6414,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2324,9 +6441,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2334,7 +6451,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2342,7 +6459,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2359,7 +6476,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2367,7 +6484,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2384,7 +6501,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2392,7 +6509,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2409,17 +6526,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -2431,35 +6548,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -2476,26 +6593,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211f mem 0x0000000080022078 @@ -2509,12 +6630,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2522,7 +6643,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2539,21 +6660,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002318 mem 0x0000000080022050 core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -2572,81 +6693,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022121 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002408 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002410 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002320 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022121 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002410 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022121 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002410 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022121 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022121 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022121 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -2655,7 +6776,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -2665,9 +6786,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -2677,31 +6798,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -2713,41 +6834,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -2770,9 +6889,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2797,9 +6916,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2824,9 +6943,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2851,9 +6970,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2878,9 +6997,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2905,9 +7024,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -2915,7 +7034,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2923,7 +7042,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2940,7 +7059,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2948,7 +7067,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2965,7 +7084,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -2973,7 +7092,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -2990,17 +7109,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -3012,35 +7131,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -3057,26 +7176,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212a mem 0x0000000080022078 @@ -3090,12 +7213,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -3103,7 +7226,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -3120,21 +7243,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -3153,81 +7276,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002212c mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002212c 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002212c mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002410 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002418 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002328 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002212c +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002328 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002418 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002212c +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002418 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002212c +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002212c +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002212c +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -3236,7 +7359,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -3246,9 +7369,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -3258,31 +7381,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -3294,41 +7417,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -3351,9 +7472,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3378,9 +7499,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3405,9 +7526,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3432,9 +7553,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3459,9 +7580,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3486,9 +7607,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3496,7 +7617,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -3504,7 +7625,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -3521,7 +7642,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -3529,7 +7650,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -3546,7 +7667,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -3554,7 +7675,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -3571,17 +7692,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -3593,35 +7714,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -3638,26 +7759,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022135 mem 0x0000000080022078 @@ -3671,12 +7796,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -3684,7 +7809,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -3701,21 +7826,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -3734,81 +7859,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022137 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002418 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002420 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002330 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022137 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002330 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002420 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022137 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002420 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022137 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022137 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022137 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -3817,7 +7942,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -3827,9 +7952,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -3839,31 +7964,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -3875,41 +8000,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -3932,9 +8055,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3959,9 +8082,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -3986,9 +8109,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4013,9 +8136,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4040,9 +8163,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4067,9 +8190,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4077,7 +8200,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4085,7 +8208,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4102,7 +8225,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4110,7 +8233,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4127,7 +8250,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4135,7 +8258,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4152,17 +8275,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -4174,35 +8297,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -4219,26 +8342,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022140 mem 0x0000000080022078 @@ -4252,12 +8379,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4265,7 +8392,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4282,21 +8409,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -4315,81 +8442,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022142 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002420 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002428 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002338 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022142 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002338 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002428 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022142 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002428 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022142 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022142 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022142 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -4398,7 +8525,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -4408,9 +8535,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -4420,31 +8547,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -4456,41 +8583,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -4513,9 +8638,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4540,9 +8665,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4567,9 +8692,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4594,9 +8719,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4621,9 +8746,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4648,9 +8773,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -4658,7 +8783,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4666,7 +8791,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4683,7 +8808,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4691,7 +8816,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4708,7 +8833,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4716,7 +8841,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4733,17 +8858,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -4755,35 +8880,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -4800,26 +8925,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214b mem 0x0000000080022078 @@ -4833,12 +8962,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -4846,7 +8975,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -4863,21 +8992,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -4896,81 +9025,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002214d mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002214d 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002214d mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002428 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002430 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002340 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002214d +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002340 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002430 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002214d +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002430 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002214d +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002214d +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002214d +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -4979,7 +9108,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -4989,9 +9118,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -5001,31 +9130,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -5037,41 +9166,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -5094,9 +9221,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5121,9 +9248,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5148,9 +9275,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5175,9 +9302,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5202,9 +9329,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5229,9 +9356,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5239,7 +9366,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5247,7 +9374,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5264,7 +9391,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5272,7 +9399,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5289,7 +9416,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5297,7 +9424,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5314,17 +9441,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -5336,35 +9463,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -5381,26 +9508,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022156 mem 0x0000000080022078 @@ -5414,12 +9545,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5427,7 +9558,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5444,21 +9575,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -5477,81 +9608,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022158 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002430 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002438 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002348 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022158 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002348 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002438 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022158 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002438 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022158 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022158 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022158 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -5560,7 +9691,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -5570,9 +9701,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -5582,31 +9713,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -5618,41 +9749,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -5675,9 +9804,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5702,9 +9831,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5729,9 +9858,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5756,9 +9885,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5783,9 +9912,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5810,9 +9939,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -5820,7 +9949,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5828,7 +9957,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5845,7 +9974,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5853,7 +9982,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5870,7 +9999,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -5878,7 +10007,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -5895,17 +10024,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -5917,35 +10046,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -5962,26 +10091,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022161 mem 0x0000000080022078 @@ -5995,12 +10128,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6008,7 +10141,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -6025,21 +10158,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -6058,81 +10191,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022163 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002438 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002440 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002350 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022163 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002350 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002440 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022163 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002440 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022163 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022163 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022163 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -6141,7 +10274,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -6151,9 +10284,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -6163,31 +10296,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -6199,41 +10332,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -6256,9 +10387,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6283,9 +10414,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6310,9 +10441,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6337,9 +10468,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6364,9 +10495,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6391,9 +10522,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6401,7 +10532,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6409,7 +10540,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -6426,7 +10557,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6434,7 +10565,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -6451,7 +10582,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6459,7 +10590,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -6476,17 +10607,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -6498,35 +10629,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -6543,26 +10674,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216c mem 0x0000000080022078 @@ -6576,12 +10711,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6589,7 +10724,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -6606,21 +10741,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -6639,81 +10774,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002216e mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002216e 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002216e mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002440 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002448 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002358 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002216e +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002358 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002448 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002216e +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002448 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002216e +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002216e +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002216e +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -6722,7 +10857,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -6732,9 +10867,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -6744,31 +10879,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -6780,41 +10915,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -6837,9 +10970,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6864,9 +10997,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6891,9 +11024,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6918,9 +11051,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6945,9 +11078,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6972,9 +11105,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -6982,7 +11115,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -6990,7 +11123,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7007,7 +11140,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7015,7 +11148,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7032,7 +11165,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7040,7 +11173,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7057,17 +11190,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7079,35 +11212,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -7124,26 +11257,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022177 mem 0x0000000080022078 @@ -7157,12 +11294,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7170,7 +11307,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7187,21 +11324,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -7220,81 +11357,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022179 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002448 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002450 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002360 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022179 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002360 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002450 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022179 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002450 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022179 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022179 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022179 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -7303,7 +11440,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -7313,9 +11450,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -7325,31 +11462,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7361,41 +11498,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -7418,9 +11553,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7445,9 +11580,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7472,9 +11607,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7499,9 +11634,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7526,9 +11661,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7553,9 +11688,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -7563,7 +11698,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7571,7 +11706,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7588,7 +11723,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7596,7 +11731,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7613,7 +11748,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7621,7 +11756,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7638,17 +11773,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7660,35 +11795,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -7705,26 +11840,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022182 mem 0x0000000080022078 @@ -7738,12 +11877,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -7751,7 +11890,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -7768,21 +11907,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -7801,81 +11940,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022184 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002450 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002458 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002368 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022184 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002368 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002458 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022184 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002458 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022184 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022184 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022184 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -7884,7 +12023,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -7894,9 +12033,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -7906,31 +12045,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7942,41 +12081,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -7999,9 +12136,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8026,9 +12163,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8053,9 +12190,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8080,9 +12217,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8107,9 +12244,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8134,9 +12271,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8144,7 +12281,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8152,7 +12289,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8169,7 +12306,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8177,7 +12314,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8194,7 +12331,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8202,7 +12339,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8219,17 +12356,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -8241,35 +12378,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -8286,26 +12423,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218d mem 0x0000000080022078 @@ -8319,12 +12460,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8332,7 +12473,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8349,21 +12490,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -8382,81 +12523,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002218f mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002218f 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002218f mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002458 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002460 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002370 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002218f +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002370 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002460 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002218f +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002460 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002218f +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002218f +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002218f +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -8465,7 +12606,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -8475,9 +12616,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -8487,31 +12628,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -8523,41 +12664,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -8580,9 +12719,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8607,9 +12746,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8634,9 +12773,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8661,9 +12800,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8688,9 +12827,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8715,9 +12854,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -8725,7 +12864,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8733,7 +12872,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8750,7 +12889,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8758,7 +12897,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8775,7 +12914,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8783,7 +12922,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8800,17 +12939,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -8822,35 +12961,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -8867,26 +13006,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022198 mem 0x0000000080022078 @@ -8900,12 +13043,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -8913,7 +13056,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -8930,21 +13073,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -8963,81 +13106,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002219a mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002219a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002219a mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002460 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002468 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002378 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002219a +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002378 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002468 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002219a +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002468 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002219a +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002219a +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002219a +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -9046,7 +13189,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -9056,9 +13199,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -9068,31 +13211,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -9104,41 +13247,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -9161,9 +13302,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9188,9 +13329,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9215,9 +13356,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9242,9 +13383,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9269,9 +13410,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9296,9 +13437,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9306,7 +13447,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9314,7 +13455,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9331,7 +13472,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9339,7 +13480,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9356,7 +13497,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9364,7 +13505,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9381,17 +13522,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -9403,35 +13544,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -9448,26 +13589,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a3 mem 0x0000000080022078 @@ -9481,12 +13626,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9494,7 +13639,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9511,21 +13656,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -9544,81 +13689,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221a5 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002468 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002470 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002380 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221a5 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002380 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002470 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221a5 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002470 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221a5 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221a5 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221a5 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -9627,7 +13772,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -9637,9 +13782,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -9649,31 +13794,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -9685,41 +13830,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -9742,9 +13885,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9769,9 +13912,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9796,9 +13939,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9823,9 +13966,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9850,9 +13993,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9877,9 +14020,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -9887,7 +14030,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9895,7 +14038,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9912,7 +14055,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9920,7 +14063,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9937,7 +14080,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -9945,7 +14088,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -9962,17 +14105,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -9984,35 +14127,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -10029,26 +14172,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ae mem 0x0000000080022078 @@ -10062,12 +14209,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -10075,7 +14222,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -10092,21 +14239,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -10125,81 +14272,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221b0 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002470 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002478 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002388 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221b0 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002388 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002478 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221b0 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002478 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221b0 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221b0 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221b0 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -10208,7 +14355,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -10218,9 +14365,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -10230,31 +14377,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -10266,41 +14413,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -10323,9 +14468,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10350,9 +14495,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10377,9 +14522,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10404,9 +14549,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10431,9 +14576,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10458,9 +14603,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10468,7 +14613,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -10476,7 +14621,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -10493,7 +14638,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -10501,7 +14646,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -10518,7 +14663,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -10526,7 +14671,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -10543,17 +14688,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -10565,35 +14710,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -10610,26 +14755,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b9 mem 0x0000000080022078 @@ -10643,12 +14792,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -10656,7 +14805,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -10673,21 +14822,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -10706,81 +14855,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221bb 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002478 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002480 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002390 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221bb +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002390 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002480 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221bb +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002480 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221bb +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221bb +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221bb +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -10789,7 +14938,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -10799,9 +14948,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -10811,31 +14960,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -10847,41 +14996,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -10904,9 +15051,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10931,9 +15078,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10958,9 +15105,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -10985,9 +15132,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11012,9 +15159,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11039,9 +15186,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11049,7 +15196,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11057,7 +15204,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11074,7 +15221,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11082,7 +15229,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11099,7 +15246,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11107,7 +15254,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11124,17 +15271,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -11146,35 +15293,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -11191,26 +15338,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c4 mem 0x0000000080022078 @@ -11224,12 +15375,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11237,7 +15388,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11254,21 +15405,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -11287,81 +15438,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221c6 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002480 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002488 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002398 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221c6 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002398 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002488 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221c6 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002488 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221c6 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221c6 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221c6 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -11370,7 +15521,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -11380,9 +15531,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -11392,31 +15543,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -11428,41 +15579,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -11485,9 +15634,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11512,9 +15661,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11539,9 +15688,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11566,9 +15715,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11593,9 +15742,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11620,9 +15769,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -11630,7 +15779,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11638,7 +15787,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11655,7 +15804,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11663,7 +15812,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11680,7 +15829,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11688,7 +15837,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11705,17 +15854,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -11727,35 +15876,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -11772,26 +15921,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221cf mem 0x0000000080022078 @@ -11805,12 +15958,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -11818,7 +15971,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -11835,21 +15988,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -11868,81 +16021,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221d1 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002488 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002490 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023a0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221d1 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002490 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221d1 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002490 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221d1 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221d1 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221d1 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -11951,7 +16104,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -11961,9 +16114,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -11973,31 +16126,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12009,41 +16162,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -12066,9 +16217,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12093,9 +16244,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12120,9 +16271,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12147,9 +16298,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12174,9 +16325,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12201,9 +16352,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12211,7 +16362,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12219,7 +16370,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12236,7 +16387,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12244,7 +16395,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12261,7 +16412,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12269,7 +16420,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12286,17 +16437,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12308,35 +16459,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -12353,26 +16504,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221da mem 0x0000000080022078 @@ -12386,12 +16541,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12399,7 +16554,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12416,21 +16571,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -12449,81 +16604,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221dc 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002490 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002498 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023a8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221dc +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002498 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221dc +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x0000000080002498 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221dc +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221dc +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221dc +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -12532,7 +16687,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -12542,9 +16697,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -12554,31 +16709,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12590,41 +16745,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -12647,9 +16800,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12674,9 +16827,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12701,9 +16854,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12728,9 +16881,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12755,9 +16908,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12782,9 +16935,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -12792,7 +16945,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12800,7 +16953,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12817,7 +16970,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12825,7 +16978,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12842,7 +16995,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12850,7 +17003,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12867,17 +17020,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12889,35 +17042,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -12934,26 +17087,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e5 mem 0x0000000080022078 @@ -12967,12 +17124,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -12980,7 +17137,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -12997,21 +17154,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -13030,81 +17187,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221e7 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x0000000080002498 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024a0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023b0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221e7 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221e7 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024a0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221e7 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221e7 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221e7 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -13113,7 +17270,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -13123,9 +17280,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -13135,31 +17292,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -13171,41 +17328,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -13228,9 +17383,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13255,9 +17410,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13282,9 +17437,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13309,9 +17464,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13336,9 +17491,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13363,9 +17518,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13373,7 +17528,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13381,7 +17536,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -13398,7 +17553,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13406,7 +17561,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -13423,7 +17578,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13431,7 +17586,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -13448,17 +17603,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -13470,35 +17625,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -13515,26 +17670,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f0 mem 0x0000000080022078 @@ -13548,12 +17707,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13561,7 +17720,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -13578,21 +17737,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -13611,81 +17770,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221f2 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024a0 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024a8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023b8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221f2 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221f2 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024a8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221f2 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221f2 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221f2 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -13694,7 +17853,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -13704,9 +17863,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -13716,31 +17875,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -13752,41 +17911,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -13809,9 +17966,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13836,9 +17993,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13863,9 +18020,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13890,9 +18047,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13917,9 +18074,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13944,9 +18101,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -13954,7 +18111,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13962,7 +18119,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -13979,7 +18136,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -13987,7 +18144,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14004,7 +18161,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14012,7 +18169,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14029,17 +18186,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14051,35 +18208,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -14096,26 +18253,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fb mem 0x0000000080022078 @@ -14129,12 +18290,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14142,7 +18303,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14159,21 +18320,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -14192,81 +18353,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800221fd 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024a8 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024b0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023c0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800221fd +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800221fd +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024b0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x00000000800221fd +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800221fd +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x00000000800221fd +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -14275,7 +18436,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -14285,9 +18446,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -14297,31 +18458,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14333,41 +18494,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -14390,9 +18549,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14417,9 +18576,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14444,9 +18603,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14471,9 +18630,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14498,9 +18657,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14525,9 +18684,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14535,7 +18694,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14543,7 +18702,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14560,7 +18719,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14568,7 +18727,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14585,7 +18744,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14593,7 +18752,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14610,17 +18769,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14632,35 +18791,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -14677,26 +18836,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022206 mem 0x0000000080022078 @@ -14710,12 +18873,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -14723,7 +18886,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -14740,21 +18903,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -14773,81 +18936,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022208 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024b0 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024b8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023c8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022208 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022208 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024b8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022208 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022208 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022208 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -14856,7 +19019,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -14866,9 +19029,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -14878,31 +19041,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14914,41 +19077,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -14971,9 +19132,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -14998,9 +19159,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15025,9 +19186,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15052,9 +19213,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15079,9 +19240,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15106,9 +19267,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15116,7 +19277,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15124,7 +19285,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15141,7 +19302,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15149,7 +19310,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15166,7 +19327,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15174,7 +19335,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15191,17 +19352,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -15213,35 +19374,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -15258,26 +19419,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022211 mem 0x0000000080022078 @@ -15291,12 +19456,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15304,7 +19469,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15321,21 +19486,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -15354,81 +19519,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022213 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024b8 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024c0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023d0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022213 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022213 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024c0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022213 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022213 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022213 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -15437,7 +19602,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -15447,9 +19612,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -15459,31 +19624,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -15495,41 +19660,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -15552,9 +19715,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15579,9 +19742,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15606,9 +19769,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15633,9 +19796,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15660,9 +19823,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15687,9 +19850,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -15697,7 +19860,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15705,7 +19868,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15722,7 +19885,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15730,7 +19893,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15747,7 +19910,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15755,7 +19918,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15772,17 +19935,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -15794,35 +19957,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -15839,26 +20002,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221c mem 0x0000000080022078 @@ -15872,12 +20039,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -15885,7 +20052,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -15902,21 +20069,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -15935,81 +20102,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002221e mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002221e 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002221e mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024c0 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024c8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023d8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002221e +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002221e +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024c8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002221e +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002221e +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002221e +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -16018,7 +20185,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -16028,9 +20195,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -16040,31 +20207,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -16076,41 +20243,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -16133,9 +20298,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16160,9 +20325,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16187,9 +20352,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16214,9 +20379,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16241,9 +20406,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16268,9 +20433,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16278,7 +20443,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16286,7 +20451,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16303,7 +20468,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16311,7 +20476,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16328,7 +20493,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16336,7 +20501,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16353,17 +20518,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -16375,35 +20540,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -16420,26 +20585,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022227 mem 0x0000000080022078 @@ -16453,12 +20622,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16466,7 +20635,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16483,21 +20652,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -16516,81 +20685,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022229 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024c8 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024d0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023e0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022229 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022229 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024d0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022229 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022229 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022229 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -16599,7 +20768,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -16609,9 +20778,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -16621,31 +20790,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -16657,41 +20826,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -16714,9 +20881,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16741,9 +20908,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16768,9 +20935,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16795,9 +20962,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16822,9 +20989,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16849,9 +21016,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -16859,7 +21026,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16867,7 +21034,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16884,7 +21051,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16892,7 +21059,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16909,7 +21076,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -16917,7 +21084,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -16934,17 +21101,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -16956,35 +21123,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -17001,26 +21168,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022232 mem 0x0000000080022078 @@ -17034,12 +21205,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -17047,7 +21218,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -17064,21 +21235,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -17097,81 +21268,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022234 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024d0 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024d8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023e8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022234 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022234 +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024d8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x0000000080022234 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022234 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x0000000080022234 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -17180,7 +21351,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -17190,9 +21361,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -17202,31 +21373,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -17238,41 +21409,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -17295,9 +21464,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17322,9 +21491,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17349,9 +21518,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17376,9 +21545,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17403,9 +21572,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17430,9 +21599,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17440,7 +21609,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -17448,7 +21617,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -17465,7 +21634,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -17473,7 +21642,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -17490,7 +21659,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -17498,7 +21667,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -17515,17 +21684,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -17537,35 +21706,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -17582,26 +21751,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223d mem 0x0000000080022078 @@ -17615,12 +21788,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -17628,7 +21801,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -17645,21 +21818,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -17678,81 +21851,81 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002223f mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002223f 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002223f mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024d8 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024e0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023f0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002223f +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002223f +core 0: 0x0000000080001ce4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001ce4 (0x00000597) x11 0x0000000080001ce4 +core 0: 0x0000000080001ce8 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001ce8 (0x4bc58593) x11 0x00000000800021a0 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022090 0x00000000800024e0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022078 0x000000008002223f +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002223f +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x00000000800021a0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022098 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x00000000800220b8 0x000000008002223f +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +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 0x0000000080021f10 @@ -17761,7 +21934,7 @@ core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008 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: 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) @@ -17771,9 +21944,9 @@ core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x000000000 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: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x00000000800024e8 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) @@ -17783,31 +21956,31 @@ core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x000000000 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: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021a0 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x00000000800021ac 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a0 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021a1 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a1 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a1 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -17819,41 +21992,39 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a2 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022ec 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0f4 mem 0x00000000800022ec +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x00000000800220a0 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 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: 0x0000000080001374 (0xba8c0c13) addi s8, s8, -1112 +core 0: 3 0x0000000080001374 (0xba8c0c13) x24 0x0000000080001f18 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 @@ -17876,9 +22047,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f19 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f19 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17903,9 +22074,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f1a core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1a core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17930,9 +22101,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1b core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1b core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17957,9 +22128,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f1c core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1c core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -17984,9 +22155,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f1d core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1d core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -18011,9 +22182,9 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f1e core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f1e core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 @@ -18021,7 +22192,7 @@ 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a2 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -18029,7 +22200,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a3 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -18046,7 +22217,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021a3 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -18054,7 +22225,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a4 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -18071,7 +22242,7 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021a4 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -18079,7 +22250,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a5 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -18096,17 +22267,17 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021a5 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021a6 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021a6 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: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021a6 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -18118,35 +22289,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: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021a7 +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x00000000800022f4 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: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff198 mem 0x00000000800022f4 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x00000000800220b0 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x00000000800220b0 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 @@ -18163,26 +22334,30 @@ 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: 0x0000000080001210 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 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: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x0000000080021f0c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022248 mem 0x0000000080022078 @@ -18196,12 +22371,12 @@ 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) -core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021a7 core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 @@ -18209,7 +22384,7 @@ 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: 3 0x000000008000105c (0x00140413) x8 0x00000000800021a8 core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 @@ -18226,21 +22401,21 @@ core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021a8 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 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: 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: 3 0x00000000800010b8 (0x13813983) x19 0x00000000800024e8 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) @@ -18259,36 +22434,36 @@ 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002224a mem 0x0000000080022078 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002224a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002224a mem 0x0000000080022078 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022098 +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 0x00000000800024e0 mem 0x0000000080022090 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800024e8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800023f8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002224a +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001d00 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d00 (0x009a0663) +core 0: 0x0000000080001d04 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d04 (0x000a0513) x10 0x0000000080022100 +core 0: 0x0000000080001d08 (0xc09ff0ef) jal pc - 0x3f8 +core 0: 3 0x0000000080001d08 (0xc09ff0ef) x1 0x0000000080001d0c core 0: >>>> printstr core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022100 @@ -20322,10 +24497,10 @@ 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: 0x0000000080001d0c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d0c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d10 (0xbbdff0ef) jal pc - 0x444 +core 0: 3 0x0000000080001d10 (0xbbdff0ef) x1 0x0000000080001d14 core 0: >>>> tohost_exit core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 diff --git a/traces/with_zvfhmin.txt b/traces/with_zvfhmin.txt new file mode 100644 index 0000000..e5fe065 --- /dev/null +++ b/traces/with_zvfhmin.txt @@ -0,0 +1,20184 @@ +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 (0x99c18193) addi gp, gp, -1636 +core 0: 3 0x0000000080000144 (0x99c18193) x3 0x0000000080002adc +core 0: 0x0000000080000148 (0x00002217) auipc tp, 0x2 +core 0: 3 0x0000000080000148 (0x00002217) x4 0x0000000080002148 +core 0: 0x000000008000014c (0x47720213) addi tp, tp, 1143 +core 0: 3 0x000000008000014c (0x47720213) x4 0x00000000800025bf +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002580 +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 0x0000000080022580 +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 0x0000000080002580 +core 0: 0x0000000080000174 (0x2d50106f) j pc + 0x1ad4 +core 0: 3 0x0000000080000174 (0x2d50106f) +core 0: >>>> _init +core 0: 0x0000000080001c48 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001c48 (0xbd010113) x2 0x0000000080022150 +core 0: 0x0000000080001c4c (0xaa418613) addi a2, gp, -1372 +core 0: 3 0x0000000080001c4c (0xaa418613) x12 0x0000000080002580 +core 0: 0x0000000080001c50 (0xaa418793) addi a5, gp, -1372 +core 0: 3 0x0000000080001c50 (0xaa418793) x15 0x0000000080002580 +core 0: 0x0000000080001c54 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c54 (0x41413023) mem 0x0000000080022550 0x0000000000000000 +core 0: 0x0000000080001c58 (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001c58 (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001c5c (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c5c (0x03f10a13) x20 0x000000008002218f +core 0: 0x0000000080001c60 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001c60 (0x42813023) mem 0x0000000080022570 0x0000000000000000 +core 0: 0x0000000080001c64 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001c64 (0x40913c23) mem 0x0000000080022568 0x0000000000000000 +core 0: 0x0000000080001c68 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001c68 (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c6c (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c6c (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c70 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c70 (0x42113423) mem 0x0000000080022578 0x0000000000000000 +core 0: 0x0000000080001c74 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c74 (0x41213823) mem 0x0000000080022560 0x0000000000000000 +core 0: 0x0000000080001c78 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c78 (0x41313423) mem 0x0000000080022558 0x0000000000000000 +core 0: 0x0000000080001c7c (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c7c (0x3f513c23) mem 0x0000000080022548 0x0000000000000000 +core 0: 0x0000000080001c80 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c80 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c84 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c84 (0xfc0a7a13) x20 0x0000000080022180 +core 0: 0x0000000080001c88 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c88 (0x00020513) x10 0x0000000080002580 +core 0: 0x0000000080001c8c (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c8c (0x00020693) x13 0x0000000080002580 +core 0: 0x0000000080001c90 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c90 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c94 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c94 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c98 (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c98 (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c9c (0x00e787b3) x15 0x0000000080002580 +core 0: 0x0000000080001ca0 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001ca0 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001ca4 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001ca4 (0x00e686b3) x13 0x0000000080002580 +core 0: 0x0000000080001ca8 (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001ca8 (0xfe0594e3) +core 0: 0x0000000080001cac (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001cac (0x00001797) x15 0x0000000080002cac +core 0: 0x0000000080001cb0 (0x91878793) addi a5, a5, -1768 +core 0: 3 0x0000000080001cb0 (0x91878793) x15 0x00000000800025c4 +core 0: 0x0000000080001cb4 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001cb4 (0x01050533) x10 0x0000000080002580 +core 0: 0x0000000080001cb8 (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001cb8 (0x40c78633) x12 0x0000000000000044 +core 0: 0x0000000080001cbc (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001cbc (0xf21ff0ef) x1 0x0000000080001cc0 +core 0: >>>> memset +core 0: 0x0000000080001bdc (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001bdc (0x00c567b3) x15 0x00000000800025c4 +core 0: 0x0000000080001be0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001be0 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001be4 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001be4 (0x00c50733) x14 0x00000000800025c4 +core 0: 0x0000000080001be8 (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001be8 (0x02078663) +core 0: 0x0000000080001bec (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001bec (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001bf0 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001bf0 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001bf4 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001bf4 (0x00050793) x15 0x0000000080002580 +core 0: 0x0000000080001bf8 (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001bf8 (0x04e57663) +core 0: 0x0000000080001bfc (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bfc (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c00 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c00 (0x020780a7) mem 0x0000000080002580 0x00 +core 0: 0x0000000080001c04 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c04 (0x40e60633) x12 0x0000000000000034 +core 0: 0x0000000080001c08 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c08 (0x00e787b3) x15 0x0000000080002590 +core 0: 0x0000000080001c0c (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c0c (0xfe0618e3) +core 0: 0x0000000080001bfc (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bfc (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c00 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c00 (0x020780a7) mem 0x0000000080002590 0x00 +core 0: 0x0000000080001c04 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c04 (0x40e60633) x12 0x0000000000000024 +core 0: 0x0000000080001c08 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c08 (0x00e787b3) x15 0x00000000800025a0 +core 0: 0x0000000080001c0c (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c0c (0xfe0618e3) +core 0: 0x0000000080001bfc (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bfc (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c00 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c00 (0x020780a7) mem 0x00000000800025a0 0x00 +core 0: 0x0000000080001c04 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c04 (0x40e60633) x12 0x0000000000000014 +core 0: 0x0000000080001c08 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c08 (0x00e787b3) x15 0x00000000800025b0 +core 0: 0x0000000080001c0c (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c0c (0xfe0618e3) +core 0: 0x0000000080001bfc (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bfc (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001c00 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c00 (0x020780a7) mem 0x00000000800025b8 0x00 +core 0: 0x0000000080001c04 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c04 (0x40e60633) x12 0x000000000000000a +core 0: 0x0000000080001c08 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c08 (0x00e787b3) x15 0x00000000800025ba +core 0: 0x0000000080001c0c (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c0c (0xfe0618e3) +core 0: 0x0000000080001bfc (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bfc (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001c00 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c00 (0x020780a7) mem 0x00000000800025c0 0x00 +core 0: 0x0000000080001c04 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c04 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001c08 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c08 (0x00e787b3) x15 0x00000000800025c4 +core 0: 0x0000000080001c0c (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c0c (0xfe0618e3) +core 0: 0x0000000080001c10 (0x00008067) ret +core 0: 3 0x0000000080001c10 (0x00008067) +core 0: 0x0000000080001cc0 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001cc0 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001cc4 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001cc4 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001cc8 (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001cc8 (0xd29ff0ef) x1 0x0000000080001ccc +core 0: >>>> thread_entry +core 0: 0x00000000800019f0 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x00000000800019f0 (0x00051463) +core 0: 0x00000000800019f4 (0x00008067) ret +core 0: 3 0x00000000800019f4 (0x00008067) +core 0: 0x0000000080001ccc (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001ccc (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001cd0 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001cd0 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001cd4 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001cd4 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001cd8 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001cd8 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001cdc (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001cdc (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001ce0 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001ce0 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001ce4 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001ce4 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001ce8 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001ce8 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001cec (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001cec (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001cf0 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001cf0 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001cf4 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001cf4 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001cf8 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001cf8 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001cfc (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001cfc (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001d00 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001d00 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001d04 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001d04 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001d08 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001d08 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001d0c (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001d0c (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001d10 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001d10 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001d14 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001d14 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001d18 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001d18 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001d1c (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001d1c (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001d20 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001d20 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001d24 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001d24 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001d28 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001d28 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001d2c (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001d2c (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001d30 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001d30 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001d34 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001d34 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001d38 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001d38 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001d3c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001d3c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001d40 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001d40 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001d44 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001d44 (0x16c000ef) x1 0x0000000080001d48 +core 0: >>>> main +core 0: 0x0000000080001eb0 (0xff010113) addi sp, sp, -16 +core 0: 3 0x0000000080001eb0 (0xff010113) x2 0x0000000080022140 +core 0: 0x0000000080001eb4 (0x00113423) sd ra, 8(sp) +core 0: 3 0x0000000080001eb4 (0x00113423) mem 0x0000000080022148 0x0000000080001d48 +core 0: 0x0000000080001eb8 (0x948ff0ef) jal pc - 0xeb8 +core 0: 3 0x0000000080001eb8 (0x948ff0ef) x1 0x0000000080001ebc +core 0: >>>> benchmark +core 0: 0x0000000080001000 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001000 (0xc00027f3) x15 0x000000000000040d +core 0: 0x0000000080001004 (0x84418793) addi a5, gp, -1980 +core 0: 3 0x0000000080001004 (0x84418793) x15 0x0000000080002320 +core 0: 0x0000000080001008 (0x00001697) auipc a3, 0x1 +core 0: 3 0x0000000080001008 (0x00001697) x13 0x0000000080002008 +core 0: 0x000000008000100c (0x2d868693) addi a3, a3, 728 +core 0: 3 0x000000008000100c (0x2d868693) x13 0x00000000800022e0 +core 0: 0x0000000080001010 (0x00068713) mv a4, a3 +core 0: 3 0x0000000080001010 (0x00068713) x14 0x00000000800022e0 +core 0: 0x0000000080001014 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001014 (0x00078593) x11 0x0000000080002320 +core 0: 0x0000000080001018 (0x00078613) mv a2, a5 +core 0: 3 0x0000000080001018 (0x00078613) x12 0x0000000080002320 +core 0: 0x000000008000101c (0xccf27057) vsetivli zero, 4, e16, mf2, ta, ma +core 0: 3 0x000000008000101c (0xccf27057) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x00000000800022e8 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002320 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002330 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x00000000800022f0 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002330 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002340 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x00000000800022f0 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x00000000800022f8 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002340 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002350 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x00000000800022f0 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x0000000080002300 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002350 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002360 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x0000000080002300 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x0000000080002308 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002360 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002370 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x0000000080002300 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x0000000080002310 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002370 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002380 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x0000000080002318 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002380 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x0000000080002390 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001020 (0x02075107) vle16.v v2, (a4) +core 0: 3 0x0000000080001020 (0x02075107) e16 mf2 l4 v2 0xffffffffffffffff0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001024 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001024 (0x00870713) x14 0x0000000080002320 +core 0: 0x0000000080001028 (0x4a2610d7) vfwcvt.f.f.v v1, v2 +core 0: 3 0x0000000080001028 (0x4a2610d7) e16 mf2 l4 v1 0x00000000000000000000000000000000 +core 0: 0x000000008000102c (0x020660a7) vse32.v v1, (a2) +core 0: 3 0x000000008000102c (0x020660a7) mem 0x0000000080002390 0x0000000000000000 +core 0: 0x0000000080001030 (0x01060613) addi a2, a2, 16 +core 0: 3 0x0000000080001030 (0x01060613) x12 0x00000000800023a0 +core 0: 0x0000000080001034 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001034 (0xfeb716e3) +core 0: 0x0000000080001038 (0xc0002773) csrr a4, cycle +core 0: 3 0x0000000080001038 (0xc0002773) x14 0x00000000000004a5 +core 0: 0x000000008000103c (0xc0002773) csrr a4, cycle +core 0: 3 0x000000008000103c (0xc0002773) x14 0x00000000000004ae +core 0: 0x0000000080001040 (0x8c418713) addi a4, gp, -1852 +core 0: 3 0x0000000080001040 (0x8c418713) x14 0x00000000800023a0 +core 0: 0x0000000080001044 (0xccf27057) vsetivli zero, 4, e16, mf2, ta, ma +core 0: 3 0x0000000080001044 (0xccf27057) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002320 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002330 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x00000000800022e0 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x00000000800022e8 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002330 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002340 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x00000000800022e8 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x00000000800022f0 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002340 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002350 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x00000000800022f0 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x00000000800022f8 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002350 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002360 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x00000000800022f8 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x0000000080002300 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002360 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002370 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x0000000080002300 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x0000000080002308 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002370 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002380 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x0000000080002308 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x0000000080002310 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002380 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x0000000080002390 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x0000000080002310 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x0000000080002318 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001048 (0x0207e087) vle32.v v1, (a5) +core 0: 3 0x0000000080001048 (0x0207e087) e16 mf2 l4 v1 0x00000000000000000000000000000000 mem 0x0000000080002390 +core 0: 0x000000008000104c (0x01078793) addi a5, a5, 16 +core 0: 3 0x000000008000104c (0x01078793) x15 0x00000000800023a0 +core 0: 0x0000000080001050 (0x4a1a10d7) vfncvt.f.f.w v1, v1 +core 0: 3 0x0000000080001050 (0x4a1a10d7) e16 mf2 l4 v1 0xffffffffffffffff0000000000000000 +core 0: 0x0000000080001054 (0x0206d0a7) vse16.v v1, (a3) +core 0: 3 0x0000000080001054 (0x0206d0a7) mem 0x0000000080002318 0x0000 +core 0: 0x0000000080001058 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001058 (0x00868693) x13 0x0000000080002320 +core 0: 0x000000008000105c (0xfef716e3) bne a4, a5, pc - 20 +core 0: 3 0x000000008000105c (0xfef716e3) +core 0: 0x0000000080001060 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001060 (0xc00027f3) x15 0x0000000000000535 +core 0: 0x0000000080001064 (0x00008067) ret +core 0: 3 0x0000000080001064 (0x00008067) +core 0: 0x0000000080001ebc (0x00813083) ld ra, 8(sp) +core 0: 3 0x0000000080001ebc (0x00813083) x1 0x0000000080001d48 mem 0x0000000080022148 +core 0: 0x0000000080001ec0 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001ec0 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ec4 (0x01010113) addi sp, sp, 16 +core 0: 3 0x0000000080001ec4 (0x01010113) x2 0x0000000080022150 +core 0: 0x0000000080001ec8 (0x00008067) ret +core 0: 3 0x0000000080001ec8 (0x00008067) +core 0: 0x0000000080001d48 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001d48 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001d4c (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001d4c (0x000a0493) x9 0x0000000080022180 +core 0: 0x0000000080001d50 (0x9b418413) addi s0, gp, -1612 +core 0: 3 0x0000000080001d50 (0x9b418413) x8 0x0000000080002490 +core 0: 0x0000000080001d54 (0x8c418913) addi s2, gp, -1852 +core 0: 3 0x0000000080001d54 (0x8c418913) x18 0x00000000800023a0 +core 0: 0x0000000080001d58 (0xaa418993) addi s3, gp, -1372 +core 0: 3 0x0000000080001d58 (0xaa418993) x19 0x0000000080002580 +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002490 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022180 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002490 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022180 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022180 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000000000535 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x00000000800023a0 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022180 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022180 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023a0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022180 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022180 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022180 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022181 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022181 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022181 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022181 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022181 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022182 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022182 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022182 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022182 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022182 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022183 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022183 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022183 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022183 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022183 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022184 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022184 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022184 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022184 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022184 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022185 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022185 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022185 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022185 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022185 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022186 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022186 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022186 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022186 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022186 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022187 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022187 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022187 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022187 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022187 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022188 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022188 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022188 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022188 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022188 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022189 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022189 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022189 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022189 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022189 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218a 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022180 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022180 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023a0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002218b 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002490 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002498 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023a8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002218b +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002498 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002218b +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002498 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002218b +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002218b +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002218b +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002218b +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002218b +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023a8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218b 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218c 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218d 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218e 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002218f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002218f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002218f 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002218f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022190 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022190 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022190 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022190 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022190 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022191 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022191 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022191 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022191 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022191 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022192 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022192 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022192 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022192 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022192 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022193 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022193 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022193 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022193 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022193 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022194 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022194 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022194 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022194 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022194 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022195 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022195 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022195 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022195 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022195 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022196 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022196 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002218b mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002218b mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023a8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022196 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002498 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024a0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023b0 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022196 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022196 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024a0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022196 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022196 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022196 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022196 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022196 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023b0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022196 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022197 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022197 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022197 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022197 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022197 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022198 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022198 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022198 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022198 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022198 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022199 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022199 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022199 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022199 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022199 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219a 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219b 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219c 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219d 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219e 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002219f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002219f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002219f 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002219f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a0 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022196 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022196 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023b0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221a1 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024a0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024a8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023b8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221a1 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221a1 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024a8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221a1 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221a1 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221a1 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221a1 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221a1 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023b8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a1 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a2 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a3 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a4 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a5 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a6 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a7 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a8 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221a9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221a9 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221a9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221aa +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221aa +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221aa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221aa 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221aa mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ab +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ab +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ab mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ab 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ab mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ac +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ac +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221a1 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221a1 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023b8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221ac 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024a8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024b0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023c0 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221ac +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221ac +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024b0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221ac +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221ac +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221ac +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221ac +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221ac +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023c0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ac 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ad +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ad +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ad mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ad 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ad mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ae +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ae +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ae mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ae 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ae mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221af +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221af +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221af mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221af 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221af mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b0 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b1 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b2 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b3 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b4 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b5 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b6 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221ac mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221ac mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023c0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221b7 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024b0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024b8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023c8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221b7 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221b7 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024b8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221b7 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221b7 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221b7 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221b7 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221b7 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023c8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b7 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b8 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221b9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221b9 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221b9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ba +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ba +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ba mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ba 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ba mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221bb +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bb +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221bb 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221bb mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221bc +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bc +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221bc 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221bc mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221bd +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bd +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221bd 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221bd mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221be +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221be +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221be mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221be 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221be mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221bf +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bf +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221bf 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221bf mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c0 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c1 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221b7 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221b7 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023c8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221c2 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024b8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024c0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023d0 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221c2 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221c2 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024c0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221c2 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221c2 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221c2 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221c2 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221c2 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023d0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c2 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c3 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c4 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c5 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c6 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c7 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c8 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221c9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221c9 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221c9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ca +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ca +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ca mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ca 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ca mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221cb +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cb +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221cb 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221cb mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221cc +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cc +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221cc 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221cc mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221cd +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cd +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221c2 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221c2 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023d0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221cd 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024c0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024c8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023d8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221cd +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221cd +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024c8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221cd +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221cd +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221cd +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221cd +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221cd +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023d8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221cd 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ce +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ce +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ce mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ce 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ce mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221cf +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cf +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221cf 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221cf mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d0 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d1 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d2 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d3 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d4 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d5 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d6 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d7 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221cd mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221cd mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023d8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221d8 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024c8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024d0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023e0 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221d8 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221d8 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024d0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221d8 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221d8 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221d8 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221d8 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221d8 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023e0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d8 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221d9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221d9 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221d9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221da +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221da +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221da mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221da 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221da mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221db +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221db +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221db mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221db 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221db mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221dc +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221dc +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221dc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221dc 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221dc mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221dd +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221dd +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221dd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221dd 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221dd mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221de +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221de +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221de mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221de 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221de mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221df +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221df +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221df mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221df 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221df mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e0 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e1 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e2 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221d8 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221d8 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023e0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221e3 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024d0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024d8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023e8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221e3 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221e3 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024d8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221e3 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221e3 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221e3 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221e3 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221e3 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023e8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e3 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e4 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e5 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e6 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e7 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e8 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221e9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221e9 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221e9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ea +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ea +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ea mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ea 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ea mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221eb +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221eb +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221eb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221eb 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221eb mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ec +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ec +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ec mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ec 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ec mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ed +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ed +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ed mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ed 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ed mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ee +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ee +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221e3 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221e3 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023e8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221ee 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024d8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024e0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023f0 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221ee +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f0 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221ee +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024e0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221ee +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221ee +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221ee +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221ee +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221ee +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023f0 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ee 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ef +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ef +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ef mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ef 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ef mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f0 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f1 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f2 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f3 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f4 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f5 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f6 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f7 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f8 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221f9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221ee mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221ee mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023f0 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800221f9 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024e0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024e8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x00000000800023f8 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800221f9 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f8 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800221f9 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024e8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800221f9 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800221f9 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800221f9 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800221f9 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800221f9 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x00000000800023f8 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221f9 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221fa +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fa +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221fa 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221fa mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221fb +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fb +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221fb 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221fb mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221fc +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fc +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221fc 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221fc mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221fd +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fd +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221fd 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221fd mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221fe +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fe +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fe mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221fe 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221fe mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800221ff +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ff +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ff mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800221ff 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800221ff mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022200 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022200 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022200 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022200 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022200 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022201 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022201 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022201 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022201 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022201 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022202 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022202 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022202 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022202 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022202 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022203 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022203 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022203 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022203 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022203 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022204 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022204 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800221f9 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800221f9 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x00000000800023f8 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022204 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024e8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024f0 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002400 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022204 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002400 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022204 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024f0 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022204 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022204 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022204 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022204 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022204 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002400 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022204 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022205 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022205 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022205 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022205 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022205 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022206 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022206 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022206 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022206 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022206 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022207 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022207 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022207 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022207 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022207 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022208 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022208 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022208 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022208 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022208 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022209 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022209 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022209 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022209 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022209 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220a 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220b 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220c 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220d 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220e 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002220f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002220f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022204 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022204 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002400 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002220f 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024f0 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x00000000800024f8 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002408 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002220f +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002408 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f8 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002220f +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x00000000800024f8 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002220f +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002220f +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002220f +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002220f +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002220f +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002408 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002220f 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022210 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022210 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022210 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022210 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022210 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022211 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022211 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022211 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022211 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022211 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022212 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022212 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022212 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022212 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022212 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022213 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022213 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022213 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022213 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022213 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022214 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022214 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022214 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022214 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022214 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022215 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022215 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022215 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022215 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022215 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022216 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022216 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022216 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022216 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022216 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022217 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022217 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022217 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022217 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022217 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022218 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022218 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022218 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022218 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022218 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022219 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022219 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022219 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022219 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022219 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002220f mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002220f mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002408 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002221a 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x00000000800024f8 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002500 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002410 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002221a +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002410 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002500 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002221a +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002500 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002221a +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002221a +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002221a +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002221a +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002221a +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002410 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221a 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221b 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221c 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221d 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221e 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002221f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002221f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002221f 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002221f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022220 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022220 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022220 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022220 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022220 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022221 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022221 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022221 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022221 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022221 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022222 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022222 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022222 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022222 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022222 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022223 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022223 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022223 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022223 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022223 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022224 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022224 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022224 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022224 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022224 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022225 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022225 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002221a mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002221a mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002410 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022225 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002500 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002508 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002418 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022225 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002418 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002508 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022225 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002508 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022225 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022225 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022225 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022225 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022225 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002418 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022225 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022226 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022226 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022226 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022226 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022226 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022227 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022227 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022227 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022227 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022227 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022228 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022228 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022228 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022228 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022228 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022229 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022229 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022229 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022229 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022229 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222a 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222b 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222c 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222d 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222e 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002222f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002222f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002222f 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002222f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022230 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022230 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022225 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022225 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002418 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022230 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002508 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002510 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002420 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022230 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002420 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002510 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022230 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002510 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022230 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022230 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022230 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022230 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022230 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002420 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022230 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022231 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022231 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022231 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022231 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022231 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022232 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022232 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022232 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022232 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022232 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022233 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022233 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022233 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022233 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022233 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022234 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022234 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022234 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022234 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022234 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022235 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022235 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022235 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022235 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022235 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022236 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022236 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022236 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022236 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022236 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022237 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022237 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022237 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022237 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022237 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022238 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022238 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022238 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022238 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022238 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022239 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022239 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022239 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022239 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022239 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223a 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022230 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022230 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002420 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002223b 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002510 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002518 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002428 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002223b +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002428 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002518 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002223b +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002518 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002223b +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002223b +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002223b +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002223b +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002223b +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002428 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223b 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223c 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223d 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223e 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002223f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002223f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002223f 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002223f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022240 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022240 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022240 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022240 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022240 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022241 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022241 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022241 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022241 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022241 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022242 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022242 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022242 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022242 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022242 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022243 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022243 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022243 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022243 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022243 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022244 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022244 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022244 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022244 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022244 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022245 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022245 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022245 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022245 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022245 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022246 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022246 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002223b mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002223b mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002428 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022246 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002518 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002520 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002430 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022246 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002430 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002520 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022246 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002520 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022246 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022246 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022246 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022246 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022246 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002430 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022246 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022247 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022247 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022247 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022247 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022247 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022248 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022248 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022248 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022248 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022248 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022249 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022249 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022249 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022249 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022249 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224a 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224b 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224c 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224d 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224e 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002224f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002224f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002224f 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002224f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022250 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022250 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022250 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022250 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022250 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022251 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022251 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022246 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022246 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002430 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022251 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002520 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002528 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002438 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022251 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002438 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002528 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022251 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002528 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022251 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022251 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022251 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022251 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022251 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002438 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022251 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022252 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022252 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022252 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022252 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022252 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022253 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022253 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022253 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022253 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022253 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022254 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022254 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022254 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022254 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022254 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022255 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022255 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022255 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022255 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022255 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022256 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022256 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022256 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022256 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022256 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022257 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022257 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022257 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022257 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022257 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022258 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022258 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022258 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022258 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022258 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022259 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022259 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022259 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022259 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022259 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225a 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225b 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022251 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022251 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002438 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002225c 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002528 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002530 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002440 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002225c +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002440 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002530 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002225c +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002530 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002225c +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002225c +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002225c +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002225c +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002225c +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002440 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225c 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225d 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225e 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002225f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002225f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002225f 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002225f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022260 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022260 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022260 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022260 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022260 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022261 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022261 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022261 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022261 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022261 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022262 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022262 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022262 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022262 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022262 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022263 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022263 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022263 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022263 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022263 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022264 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022264 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022264 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022264 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022264 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022265 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022265 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022265 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022265 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022265 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022266 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022266 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022266 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022266 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022266 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022267 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022267 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002225c mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002225c mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002440 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022267 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002530 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002538 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002448 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022267 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002448 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002538 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022267 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002538 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022267 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022267 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022267 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022267 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022267 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002448 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022267 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022268 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022268 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022268 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022268 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022268 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022269 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022269 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022269 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022269 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022269 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226a 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226b 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226c 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226d 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226e 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002226f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002226f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002226f 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002226f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022270 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022270 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022270 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022270 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022270 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022271 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022271 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022271 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022271 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022271 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022272 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022272 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022267 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022267 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002448 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022272 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002538 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002540 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002450 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022272 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002450 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002540 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022272 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002540 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022272 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022272 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022272 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022272 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022272 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002450 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022272 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022273 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022273 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022273 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022273 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022273 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022274 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022274 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022274 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022274 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022274 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022275 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022275 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022275 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022275 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022275 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022276 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022276 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022276 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022276 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022276 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022277 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022277 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022277 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022277 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022277 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022278 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022278 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022278 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022278 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022278 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022279 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022279 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022279 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022279 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022279 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227a 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227b 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227c 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022272 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022272 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002450 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002227d 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002540 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002548 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002458 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002227d +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002458 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002548 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002227d +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002548 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002227d +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002227d +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002227d +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002227d +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002227d +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002458 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227d 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227e 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002227f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002227f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002227f 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002227f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022280 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022280 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022280 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022280 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022280 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022281 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022281 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022281 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022281 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022281 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022282 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022282 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022282 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022282 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022282 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022283 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022283 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022283 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022283 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022283 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022284 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022284 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022284 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022284 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022284 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022285 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022285 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022285 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022285 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022285 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022286 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022286 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022286 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022286 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022286 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022287 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022287 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022287 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022287 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022287 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022288 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022288 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002227d mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002227d mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002458 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022288 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002548 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002550 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002460 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022288 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002460 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002550 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022288 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002550 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022288 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022288 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022288 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022288 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022288 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002460 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022288 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022289 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022289 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022289 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022289 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022289 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228a 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228b 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228c 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228d 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228e 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002228f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002228f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002228f 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002228f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022290 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022290 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022290 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022290 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022290 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022291 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022291 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022291 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022291 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022291 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022292 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022292 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022292 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022292 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022292 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022293 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022293 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022288 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022288 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002460 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x0000000080022293 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002550 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002558 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002468 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x0000000080022293 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002468 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002558 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x0000000080022293 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002558 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x0000000080022293 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x0000000080022293 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x0000000080022293 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x0000000080022293 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x0000000080022293 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002468 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022293 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022294 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022294 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022294 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022294 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022294 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022295 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022295 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022295 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022295 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022295 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022296 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022296 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022296 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022296 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022296 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022297 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022297 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022297 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022297 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022297 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022298 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022298 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022298 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022298 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022298 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x0000000080022299 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x0000000080022299 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022299 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x0000000080022299 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x0000000080022299 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229a +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229a +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229a 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229a mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229b +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229b +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229b 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229b mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229c +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229c +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229c 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229c mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229d +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229d +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229d 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229d mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229e +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229e +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x0000000080022293 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x0000000080022293 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002468 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x000000008002229e 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002558 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002560 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002470 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x000000008002229e +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002470 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002560 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x000000008002229e +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002560 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x000000008002229e +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x000000008002229e +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x000000008002229e +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x000000008002229e +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x000000008002229e +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002470 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229e 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x000000008002229f +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x000000008002229f +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x000000008002229f 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x000000008002229f mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a0 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a1 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a2 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a3 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a4 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a5 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a6 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a7 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a8 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222a9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x000000008002229e mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x000000008002229e mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002470 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800222a9 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002560 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002568 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002478 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800222a9 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002478 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002568 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800222a9 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002568 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800222a9 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800222a9 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800222a9 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800222a9 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800222a9 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002478 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222a9 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222aa +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222aa +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222aa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222aa 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222aa mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ab +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ab +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ab mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222ab 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222ab mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ac +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ac +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ac mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222ac 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222ac mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ad +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ad +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ad mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222ad 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222ad mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ae +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ae +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ae mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222ae 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222ae mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222af +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222af +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222af mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222af 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222af mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b0 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b1 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b2 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b3 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800222a9 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800222a9 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002478 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800222b4 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002568 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002570 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002480 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800222b4 +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002480 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002570 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800222b4 +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002570 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800222b4 +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800222b4 +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800222b4 +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800222b4 +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800222b4 +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002480 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b4 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b5 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b6 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b7 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b8 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222b9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222b9 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222b9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ba +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ba +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ba mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222ba 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222ba mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222bb +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bb +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222bb 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222bb mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222bc +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bc +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222bc 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222bc mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222bd +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bd +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222bd 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222bd mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222be +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222be +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222be mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222be 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222be mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222bf +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bf +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800222b4 mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800222b4 mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002480 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800222bf 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002570 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002578 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002488 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800222bf +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d5c (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d5c (0x00093683) x13 0x0000000000000000 mem 0x0000000080002488 +core 0: 0x0000000080001d60 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d60 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002578 +core 0: 0x0000000080001d64 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d64 (0x00048513) x10 0x00000000800222bf +core 0: 0x0000000080001d68 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d68 (0x00000597) x11 0x0000000080001d68 +core 0: 0x0000000080001d6c (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d6c (0x41058593) x11 0x0000000080002178 +core 0: 0x0000000080001d70 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d70 (0xd35ff0ef) x1 0x0000000080001d74 +core 0: >>>> sprintf +core 0: 0x0000000080001aa4 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001aa4 (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa8 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa8 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aac (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aac (0x02813023) mem 0x0000000080022110 0x0000000080002578 +core 0: 0x0000000080001ab0 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001ab0 (0x00a13423) mem 0x00000000800220f8 0x00000000800222bf +core 0: 0x0000000080001ab4 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001ab4 (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab8 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab8 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001abc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001abc (0x00050413) x8 0x00000000800222bf +core 0: 0x0000000080001ac0 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ac0 (0x00058613) x12 0x0000000080002178 +core 0: 0x0000000080001ac4 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001ac4 (0x00000517) x10 0x0000000080001ac4 +core 0: 0x0000000080001ac8 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac8 (0x98050513) x10 0x0000000080001444 +core 0: 0x0000000080001acc (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001acc (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ad0 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ad0 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001ad4 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001ad4 (0x02113423) mem 0x0000000080022118 0x0000000080001d74 +core 0: 0x0000000080001ad8 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad8 (0x04f13423) mem 0x0000000080022138 0x00000000800222bf +core 0: 0x0000000080001adc (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001adc (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ae0 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001ae4 (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae8 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae8 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001aec (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001aec (0xd7cff0ef) x1 0x0000000080001af0 +core 0: >>>> vprintfmt +core 0: 0x0000000080001068 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001068 (0xea010113) x2 0x0000000080021f90 +core 0: 0x000000008000106c (0x14813823) sd s0, 336(sp) +core 0: 3 0x000000008000106c (0x14813823) mem 0x00000000800220e0 0x00000000800222bf +core 0: 0x0000000080001070 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001070 (0x14913423) mem 0x00000000800220d8 0x00000000800222bf +core 0: 0x0000000080001074 (0x15213023) sd s2, 320(sp) +core 0: 3 0x0000000080001074 (0x15213023) mem 0x00000000800220d0 0x0000000080002488 +core 0: 0x0000000080001078 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001078 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x000000008000107c (0x13513423) sd s5, 296(sp) +core 0: 3 0x000000008000107c (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001080 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001080 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001084 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x0000000080001084 (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001088 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001088 (0x14113c23) mem 0x00000000800220e8 0x0000000080001af0 +core 0: 0x000000008000108c (0x13313c23) sd s3, 312(sp) +core 0: 3 0x000000008000108c (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001090 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001090 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001094 (0x11913423) sd s9, 264(sp) +core 0: 3 0x0000000080001094 (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001098 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001098 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x000000008000109c (0x00050493) mv s1, a0 +core 0: 3 0x000000008000109c (0x00050493) x9 0x0000000080001444 +core 0: 0x00000000800010a0 (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010a0 (0x00060413) x8 0x0000000080002178 +core 0: 0x00000000800010a4 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010a4 (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a8 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a8 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010ac (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010ac (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010b0 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010b0 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010b4 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010b4 (0x00001a97) x21 0x00000000800020b4 +core 0: 0x00000000800010b8 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b8 (0x0d0a8a93) x21 0x0000000080002184 +core 0: 0x00000000800010bc (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010bc (0x0140006f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002178 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002179 +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x0000000080002179 +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x0000000080002179 +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217a +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022c4 +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x0000000080001308 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x0000000080001308 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001308 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x000000008000130c (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x000000008000130c (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001310 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001310 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001314 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001314 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001318 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001318 (0x01902733) x14 0x0000000000000000 +core 0: 0x000000008000131c (0x00f77733) and a4, a4, a5 +core 0: 3 0x000000008000131c (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001320 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001320 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x0000000080001324 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001324 (0x0a0c0c63) +core 0: 0x00000000800013dc (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013dc (0x00001c17) x24 0x00000000800023dc +core 0: 0x00000000800013e0 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013e0 (0xb14c0c13) x24 0x0000000080001ef0 +core 0: 0x00000000800013e4 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013e4 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e8 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e8 (0xf40706e3) +core 0: 0x0000000080001334 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001334 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222bf 0x28 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c0 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c0 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ef1 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef1 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c0 0x6e +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c0 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c1 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c1 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001ef2 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef2 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c1 0x75 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c1 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c2 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c2 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef3 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef3 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c2 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c2 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c3 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c3 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x000000000000006c mem 0x0000000080001ef4 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef4 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c3 0x6c +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c3 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c4 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c4 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001ef5 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef5 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x0000000080001338 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001338 (0x0009c663) +core 0: 0x0000000080001344 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001344 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001348 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001348 (0x000480e7) x1 0x000000008000134c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c4 0x29 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c4 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c5 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c5 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x000000008000134c (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x000000008000134c (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001ef6 +core 0: 0x0000000080001350 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001350 (0x001c0c13) x24 0x0000000080001ef6 +core 0: 0x0000000080001354 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001354 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001358 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001358 (0xfe0510e3) +core 0: 0x000000008000135c (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x000000008000135c (0xd7905ae3) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217a +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217b +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c5 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c5 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c6 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c6 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000003d mem 0x000000008000217b +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217c +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c6 0x3d +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c6 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c7 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c7 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000020 mem 0x000000008000217c +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x000000008000217d +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c7 0x20 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c7 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c8 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c8 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000025 mem 0x000000008000217d +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010d8 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d8 (0x00144683) x13 0x0000000000000075 mem 0x000000008000217e +core 0: 0x00000000800010dc (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010dc (0x00140c13) x24 0x000000008000217e +core 0: 0x00000000800010e0 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010e0 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010e4 (0x000c0713) x14 0x000000008000217e +core 0: 0x00000000800010e8 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e8 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010ec (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010ec (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010f0 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010f0 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010f4 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010f4 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f8 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f8 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010fc (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010fc (0x00170413) x8 0x000000008000217f +core 0: 0x0000000080001100 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001100 (0x06fb6463) +core 0: 0x0000000080001104 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x2157c7b3) x15 0x00000000800022cc +core 0: 0x0000000080001108 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001108 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022cc +core 0: 0x000000008000110c (0x015787b3) add a5, a5, s5 +core 0: 3 0x000000008000110c (0x015787b3) x15 0x00000000800013b0 +core 0: 0x0000000080001110 (0x00078067) jr a5 +core 0: 3 0x0000000080001110 (0x00078067) +core 0: 0x00000000800013b0 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013b0 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013b4 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013b4 (0xf39ff06f) +core 0: 0x00000000800012ec (0x00100713) li a4, 1 +core 0: 3 0x00000000800012ec (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012f0 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012f0 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012f4 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012f4 (0xf2c746e3) +core 0: 0x00000000800012f8 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f8 (0xf20614e3) +core 0: 0x00000000800012fc (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012fc (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x0000000080001300 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001300 (0x00078b93) x23 0x0000000080022130 +core 0: 0x0000000080001304 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001304 (0xf25ff06f) +core 0: 0x0000000080001228 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001228 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x000000008000122c (0x00410613) addi a2, sp, 4 +core 0: 3 0x000000008000122c (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001230 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001230 (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001234 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001234 (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001238 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001238 (0x16d76463) +core 0: 0x00000000800013a0 (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013a0 (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013a4 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013a4 (0xeb5ff06f) +core 0: 0x0000000080001258 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001258 (0x0397d263) +core 0: 0x000000008000127c (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x000000008000127c (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001280 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001280 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x0000000080001284 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001284 (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001288 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001288 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x000000008000128c (0x03000513) li a0, 48 +core 0: 3 0x000000008000128c (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001290 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001290 (0x00fc7463) +core 0: 0x0000000080001298 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001298 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x000000008000129c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000129c (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800012a0 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012a0 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x00000000800012a4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012a4 (0x000480e7) x1 0x00000000800012a8 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c8 0x30 +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c8 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222c9 +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c9 +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800012a8 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a8 (0xff9990e3) +core 0: 0x00000000800012ac (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012ac (0xe25ff06f) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x000000000000000a mem 0x000000008000217f +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x00000000800010c4 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010c4 (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c8 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c8 (0x00140413) x8 0x0000000080002180 +core 0: 0x00000000800010cc (0x000480e7) jalr s1 +core 0: 3 0x00000000800010cc (0x000480e7) x1 0x00000000800010d0 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001448 (0x00a78023) mem 0x00000000800222c9 0x0a +core 0: 0x000000008000144c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000144c (0x0005b783) x15 0x00000000800222c9 mem 0x00000000800220f8 +core 0: 0x0000000080001450 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001450 (0x00178793) x15 0x00000000800222ca +core 0: 0x0000000080001454 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001454 (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ca +core 0: 0x0000000080001458 (0x00008067) ret +core 0: 3 0x0000000080001458 (0x00008067) +core 0: 0x00000000800010d0 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010d0 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x00000000800010d4 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010d4 (0xff4516e3) +core 0: 0x00000000800010c0 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010c0 (0x04050a63) +core 0: 0x0000000080001114 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001114 (0x15813083) x1 0x0000000080001af0 mem 0x00000000800220e8 +core 0: 0x0000000080001118 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001118 (0x15013403) x8 0x00000000800222bf mem 0x00000000800220e0 +core 0: 0x000000008000111c (0x14813483) ld s1, 328(sp) +core 0: 3 0x000000008000111c (0x14813483) x9 0x00000000800222bf mem 0x00000000800220d8 +core 0: 0x0000000080001120 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001120 (0x14013903) x18 0x0000000080002488 mem 0x00000000800220d0 +core 0: 0x0000000080001124 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001124 (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001128 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001128 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x000000008000112c (0x12813a83) ld s5, 296(sp) +core 0: 3 0x000000008000112c (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001130 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001130 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x0000000080001134 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001134 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001138 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001138 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x000000008000113c (0x10813c83) ld s9, 264(sp) +core 0: 3 0x000000008000113c (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001140 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001140 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x0000000080001144 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001144 (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001148 (0x00008067) ret +core 0: 3 0x0000000080001148 (0x00008067) +core 0: 0x0000000080001af0 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813783) x15 0x00000000800222ca mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001af4 (0x00078023) mem 0x00000000800222ca 0x00 +core 0: 0x0000000080001af8 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af8 (0x00813503) x10 0x00000000800222ca mem 0x00000000800220f8 +core 0: 0x0000000080001afc (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001afc (0x02813083) x1 0x0000000080001d74 mem 0x0000000080022118 +core 0: 0x0000000080001b00 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b00 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b04 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b04 (0x02013403) x8 0x0000000080002578 mem 0x0000000080022110 +core 0: 0x0000000080001b08 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b08 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b0c (0x00008067) ret +core 0: 3 0x0000000080001b0c (0x00008067) +core 0: 0x0000000080001d74 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d74 (0x00840413) x8 0x0000000080002580 +core 0: 0x0000000080001d78 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d78 (0x00890913) x18 0x0000000080002490 +core 0: 0x0000000080001d7c (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d7c (0x00a484b3) x9 0x00000000800222ca +core 0: 0x0000000080001d80 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d80 (0xfd341ee3) +core 0: 0x0000000080001d84 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d84 (0x009a0663) +core 0: 0x0000000080001d88 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d88 (0x000a0513) x10 0x0000000080022180 +core 0: 0x0000000080001d8c (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d8c (0xbf1ff0ef) x1 0x0000000080001d90 +core 0: >>>> printstr +core 0: 0x000000008000197c (0x00054783) lbu a5, 0(a0) +core 0: 3 0x000000008000197c (0x00054783) x15 0x0000000000000028 mem 0x0000000080022180 +core 0: 0x0000000080001980 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001980 (0xf9010113) x2 0x00000000800220e0 +core 0: 0x0000000080001984 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001984 (0x03f10693) x13 0x000000008002211f +core 0: 0x0000000080001988 (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x0000000080001988 (0xfc06f693) x13 0x0000000080022100 +core 0: 0x000000008000198c (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x000000008000198c (0x00078c63) +core 0: 0x0000000080001990 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001990 (0x00050793) x15 0x0000000080022180 +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022181 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022181 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022182 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022182 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022183 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022183 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022184 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022184 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022185 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022185 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022186 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022186 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022187 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022187 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022188 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022188 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022189 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022189 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002218a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002218b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002218c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002218d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002218e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002218f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002218f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022190 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022190 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022191 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022191 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022192 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022192 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022193 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022193 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022194 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022194 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022195 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022195 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022196 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022196 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022197 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022197 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022198 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022198 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022199 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022199 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002219a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002219b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002219c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002219d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002219e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002219f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002219f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221a0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221a1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221a2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221a3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221a6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221a8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221a9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221aa +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221aa +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221ab +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ab +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221ac +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ac +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ad +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ad +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221ae +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ae +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221af +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221af +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221b0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221b1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221b3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221b5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221b6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221b7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221b8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221b9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221b9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221ba +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ba +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221bb +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221bb +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221bc +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221bc +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221bd +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221bd +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221be +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221be +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221bf +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221bf +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221c0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221c1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221c2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221c3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221c4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221c5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221c6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221c7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221c8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221c9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221c9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ca +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ca +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221cb +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221cb +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221cc +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221cc +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221cd +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221cd +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ce +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ce +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221cf +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221cf +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221d2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221d4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221d6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221d7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221d8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221d9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221d9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221da +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221da +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221db +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221db +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221dc +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221dc +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221dd +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221dd +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221de +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221de +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221df +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221df +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221e1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221e2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221e3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221e4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221e5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221e6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221e7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221e8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221e9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221ea +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ea +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221eb +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221eb +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221ec +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ec +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221ed +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ed +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221ee +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ee +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ef +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ef +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221f0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221f3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221f4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221f5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221f6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221f7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221f8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221f9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221f9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221fa +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221fa +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221fb +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221fb +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221fc +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221fc +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221fd +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221fd +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221fe +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221fe +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ff +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800221ff +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022200 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022200 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022201 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022201 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022202 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022202 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022203 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022203 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022204 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022204 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022205 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022205 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022206 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022206 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022207 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022207 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022208 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022208 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022209 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022209 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002220a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002220b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002220c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002220d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002220e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002220f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002220f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022210 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022210 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022211 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022211 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022212 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022212 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022213 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022213 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022214 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022214 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022215 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022215 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022216 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022216 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022217 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022217 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022218 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022218 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022219 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022219 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002221a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002221b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002221c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002221d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002221e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002221f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002221f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022220 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022220 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022221 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022221 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022222 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022222 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022223 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022223 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022224 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022224 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022225 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022225 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022226 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022226 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022227 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022227 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022228 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022228 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022229 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022229 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002222a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002222b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002222c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002222d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002222e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002222f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002222f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022230 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022230 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022231 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022231 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022232 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022232 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022233 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022233 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022234 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022234 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022235 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022235 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022236 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022236 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022237 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022237 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022238 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022238 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022239 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022239 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002223a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002223b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002223c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002223d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002223e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002223f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002223f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022240 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022240 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022241 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022241 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022242 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022242 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022243 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022243 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022244 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022244 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022245 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022245 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022246 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022246 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022247 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022247 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022248 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022248 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022249 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022249 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002224a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002224b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002224c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002224d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002224e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002224f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002224f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022250 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022250 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022251 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022251 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022252 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022252 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022253 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022253 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022254 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022254 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022255 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022255 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022256 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022256 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022257 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022257 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022258 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022258 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022259 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022259 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002225a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002225b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002225c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002225d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002225e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002225f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002225f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022260 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022260 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022261 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022261 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022262 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022262 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022263 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022263 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022264 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022264 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022265 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022265 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022266 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022266 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022267 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022267 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022268 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022268 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022269 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022269 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002226a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002226b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002226c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002226d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002226e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002226f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002226f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022270 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022270 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022271 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022271 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022272 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022272 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022273 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022273 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022274 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022274 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022275 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022275 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022276 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022276 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022277 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022277 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022278 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022278 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022279 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022279 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002227a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002227b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002227c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002227d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002227e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002227f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002227f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022280 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022280 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022281 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022281 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022282 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022282 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022283 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022283 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022284 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022284 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022285 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022285 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022286 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022286 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022287 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022287 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022288 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022288 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022289 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022289 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002228a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002228b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x000000008002228c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002228d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002228e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002228f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002228f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022290 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022290 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022291 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022291 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022292 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022292 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022293 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022293 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022294 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022294 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022295 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022295 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022296 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022296 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022297 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022297 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022298 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022298 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022299 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x0000000080022299 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x000000008002229a +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229a +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002229b +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229b +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002229c +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229c +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x000000008002229d +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229d +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002229e +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229e +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x000000008002229f +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x000000008002229f +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222a0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222a1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222a2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222a3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222a4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800222a5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222a6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222a7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800222a8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222a9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222a9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800222aa +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222aa +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222ab +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ab +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222ac +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ac +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222ad +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ad +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222ae +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ae +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222af +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222af +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800222b0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222b1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222b2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800222b3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222b4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800222b5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222b6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222b7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222b8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222b9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222b9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222ba +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ba +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800222bb +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222bb +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222bc +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222bc +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222bd +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222bd +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800222be +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222be +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222bf +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222bf +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006e mem 0x00000000800222c0 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c0 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222c1 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c1 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222c2 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c2 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000006c mem 0x00000000800222c3 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c3 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222c4 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c4 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222c5 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c5 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000003d mem 0x00000000800222c6 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c6 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222c7 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c7 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222c8 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c8 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x000000000000000a mem 0x00000000800222c9 +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222c9 +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x0000000080001994 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001994 (0x0017c703) x14 0x0000000000000000 mem 0x00000000800222ca +core 0: 0x0000000080001998 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001998 (0x00178793) x15 0x00000000800222ca +core 0: 0x000000008000199c (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x000000008000199c (0xfe071ce3) +core 0: 0x00000000800019a0 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x00000000800019a0 (0x40a787b3) x15 0x000000000000014a +core 0: 0x00000000800019a4 (0x04000713) li a4, 64 +core 0: 3 0x00000000800019a4 (0x04000713) x14 0x0000000000000040 +core 0: 0x00000000800019a8 (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x00000000800019a8 (0x00e6b023) mem 0x0000000080022100 0x0000000000000040 +core 0: 0x00000000800019ac (0x00100713) li a4, 1 +core 0: 3 0x00000000800019ac (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800019b0 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x00000000800019b0 (0x00e6b423) mem 0x0000000080022108 0x0000000000000001 +core 0: 0x00000000800019b4 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x00000000800019b4 (0x00a6b823) mem 0x0000000080022110 0x0000000080022180 +core 0: 0x00000000800019b8 (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x00000000800019b8 (0x00f6bc23) mem 0x0000000080022118 0x000000000000014a +core 0: 0x00000000800019bc (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019bc (0x0330000f) +core 0: 0x00000000800019c0 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800019c0 (0xbfffe717) x14 0x000000003ffff9c0 +core 0: 0x00000000800019c4 (0x68070713) addi a4, a4, 1664 +core 0: 3 0x00000000800019c4 (0x68070713) x14 0x0000000040000040 +core 0: 0x00000000800019c8 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x00000000800019c8 (0xbfffe797) x15 0x000000003ffff9c8 +core 0: 0x00000000800019cc (0x62d7bc23) sd a3, 1592(a5) +core 0: 3 0x00000000800019cc (0x62d7bc23) mem 0x0000000040000000 0x0000000080022100 +core 0: 0x00000000800019d0 (0x00073783) ld a5, 0(a4) +core 0: 3 0x00000000800019d0 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x00000000800019d4 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x00000000800019d4 (0xfe078ee3) +core 0: 0x00000000800019d8 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x00000000800019d8 (0xbfffe797) x15 0x000000003ffff9d8 +core 0: 0x00000000800019dc (0x6607b423) sd zero, 1640(a5) +core 0: 3 0x00000000800019dc (0x6607b423) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x00000000800019e0 (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019e0 (0x0330000f) +core 0: 0x00000000800019e4 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x00000000800019e4 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022100 +core 0: 0x00000000800019e8 (0x07010113) addi sp, sp, 112 +core 0: 3 0x00000000800019e8 (0x07010113) x2 0x0000000080022150 +core 0: 0x00000000800019ec (0x00008067) ret +core 0: 3 0x00000000800019ec (0x00008067) +core 0: 0x0000000080001d90 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d90 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d94 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d94 (0xba5ff0ef) x1 0x0000000080001d98 +core 0: >>>> tohost_exit +core 0: 0x0000000080001938 (0x00151793) slli a5, a0, 1 +core 0: 3 0x0000000080001938 (0x00151793) x15 0x0000000000000000 +core 0: 0x000000008000193c (0x0017e793) ori a5, a5, 1 +core 0: 3 0x000000008000193c (0x0017e793) x15 0x0000000000000001 +core 0: 0x0000000080001940 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001940 (0xbfffe717) x14 0x000000003ffff940 +core 0: 0x0000000080001944 (0x6cf73023) sd a5, 1728(a4) +core 0: 3 0x0000000080001944 (0x6cf73023) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x0000000080001948 (0x0000006f) j pc + 0x0 +core 0: 3 0x0000000080001948 (0x0000006f) diff --git a/traces/without_czero.txt b/traces/without_czero.txt index aa5a93e..bae9e4d 100644 --- a/traces/without_czero.txt +++ b/traces/without_czero.txt @@ -163,14 +163,14 @@ 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: 0x0000000080000144 (0x1e918193) addi gp, gp, 489 +core 0: 3 0x0000000080000144 (0x1e918193) x3 0x0000000080003329 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: 0x000000008000014c (0x03720213) addi tp, tp, 55 +core 0: 3 0x000000008000014c (0x03720213) x4 0x000000008000317f core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 -core 0: 3 0x0000000080000150 (0xfc027213) x4 0x00000000800030c0 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080003140 core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 core 0: 0x0000000080000158 (0x00100593) li a1, 1 @@ -182,22351 +182,8850 @@ 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: 3 0x0000000080000168 (0x00410133) x2 0x0000000080023140 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: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080003140 +core 0: 0x0000000080000174 (0x2610106f) j pc + 0x1a60 +core 0: 3 0x0000000080000174 (0x2610106f) 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: 0x0000000080001bd4 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bd4 (0xbd010113) x2 0x0000000080022d10 +core 0: 0x0000000080001bd8 (0xde718793) addi a5, gp, -537 +core 0: 3 0x0000000080001bd8 (0xde718793) x15 0x0000000080003110 +core 0: 0x0000000080001bdc (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bdc (0x42813023) mem 0x0000000080023130 0x0000000000000000 +core 0: 0x0000000080001be0 (0xde718413) addi s0, gp, -537 +core 0: 3 0x0000000080001be0 (0xde718413) x8 0x0000000080003110 +core 0: 0x0000000080001be4 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001be4 (0x40913c23) mem 0x0000000080023128 0x0000000000000000 +core 0: 0x0000000080001be8 (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001be8 (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001bec (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001bec (0x41213823) mem 0x0000000080023120 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001bf0 (0x41313423) mem 0x0000000080023118 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001bf4 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001bf8 (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001bfc (0x00020513) mv a0, tp +core 0: 3 0x0000000080001bfc (0x00020513) x10 0x0000000080003140 +core 0: 0x0000000080001c00 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c00 (0x00078593) x11 0x0000000080003110 +core 0: 0x0000000080001c04 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c04 (0x00048613) x12 0x0000000000000000 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: 3 0x0000000080001c08 (0x42113423) mem 0x0000000080023138 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c0c (0x41413023) mem 0x0000000080023110 0x0000000000000000 +core 0: 0x0000000080001c10 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c10 (0x3f513c23) mem 0x0000000080023108 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c14 (0x00020a93) x21 0x0000000080003140 +core 0: 0x0000000080001c18 (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c18 (0xe91ff0ef) x1 0x0000000080001c1c +core 0: >>>> memcpy +core 0: 0x0000000080001aa8 (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001aa8 (0x00c5e7b3) x15 0x0000000080003110 +core 0: 0x0000000080001aac (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001aac (0x00f567b3) x15 0x0000000080003150 +core 0: 0x0000000080001ab0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ab0 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ab4 (0x00058393) x7 0x0000000080003110 +core 0: 0x0000000080001ab8 (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001ab8 (0x00c506b3) x13 0x0000000080003140 +core 0: 0x0000000080001abc (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001abc (0x02078463) +core 0: 0x0000000080001ae4 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001ae4 (0x04050713) x14 0x0000000080003180 +core 0: 0x0000000080001ae8 (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001ae8 (0x08d77463) +core 0: 0x0000000080001b70 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b70 (0x00050793) x15 0x0000000080003140 +core 0: 0x0000000080001b74 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001b74 (0xfddff06f) +core 0: 0x0000000080001b50 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b50 (0xf8d7f8e3) +core 0: 0x0000000080001ae0 (0x00008067) ret +core 0: 3 0x0000000080001ae0 (0x00008067) +core 0: 0x0000000080001c1c (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c1c (0x00001617) x12 0x0000000080002c1c +core 0: 0x0000000080001c20 (0x56860613) addi a2, a2, 1384 +core 0: 3 0x0000000080001c20 (0x56860613) x12 0x0000000080003184 +core 0: 0x0000000080001c24 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c24 (0x40860633) x12 0x0000000000000074 +core 0: 0x0000000080001c28 (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c28 (0x009a8533) x10 0x0000000080003140 +core 0: 0x0000000080001c2c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c2c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c30 (0xf49ff0ef) x1 0x0000000080001c34 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: 0x0000000080001b78 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c567b3) x15 0x0000000080003174 +core 0: 0x0000000080001b7c (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b7c (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b80 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001b80 (0x00c50633) x12 0x00000000800031b4 +core 0: 0x0000000080001b84 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001b84 (0x00078e63) +core 0: 0x0000000080001b88 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080003140 +core 0: 0x0000000080001b8c (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001b8c (0x04c57263) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003141 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003140 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003142 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003141 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003143 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003142 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003144 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003143 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003145 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003144 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003146 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003145 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003147 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003146 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003148 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003147 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003149 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003148 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003149 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000314f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003150 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000314f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003151 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003150 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003152 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003151 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003153 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003152 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003154 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003153 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003155 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003154 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003156 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003155 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003157 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003156 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003158 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003157 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003159 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003158 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003159 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000315f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003160 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000315f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003161 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003160 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003162 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003161 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003163 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003162 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003164 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003163 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003165 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003164 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003166 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003165 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003167 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003166 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003168 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003167 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003169 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003168 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003169 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000316f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003170 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000316f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003171 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003170 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003172 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003171 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003173 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003172 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003174 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003173 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003175 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003174 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003176 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003175 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003177 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003176 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003178 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003177 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003179 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003178 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003179 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000317f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003180 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000317f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003181 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003180 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003182 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003181 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003183 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003182 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003184 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003183 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003185 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003184 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003186 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003185 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003187 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003186 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003188 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003187 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003189 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003188 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003189 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000318f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003190 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000318f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003191 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003190 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003192 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003191 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003193 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003192 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003194 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003193 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003195 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003194 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003196 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003195 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003197 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003196 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003198 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003197 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080003199 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003198 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080003199 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x000000008000319f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a0 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x000000008000319f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a1 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a0 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a2 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a1 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a3 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a2 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a4 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a3 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a5 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a4 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a6 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a5 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a7 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a6 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a8 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a7 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031a9 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a8 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031aa +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031a9 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031ab +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031aa 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031ac +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031ab 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031ad +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031ac 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031ae +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031ad 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031af +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031ae 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031b0 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031af 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031b1 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031b0 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031b2 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031b1 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031b3 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031b2 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x00000000800031b4 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x00000000800031b3 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b9c (0x00008067) ret +core 0: 3 0x0000000080001b9c (0x00008067) +core 0: 0x0000000080001c34 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c34 (0x03f10a13) x20 0x0000000080022d4f +core 0: 0x0000000080001c38 (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c38 (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c3c (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c3c (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c40 (0xd49ff0ef) jal pc - 0x2b8 +core 0: 3 0x0000000080001c40 (0xd49ff0ef) x1 0x0000000080001c44 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: 0x0000000080001c44 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c44 (0xfc0a7a13) x20 0x0000000080022d40 +core 0: 0x0000000080001c48 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c48 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c4c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c4c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c50 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c50 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c54 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c54 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c58 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c58 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c5c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c5c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c60 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c60 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c64 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c64 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c68 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c68 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c6c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c6c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c70 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c70 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c74 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c74 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c78 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c78 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c7c (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c7c (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c80 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c80 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c84 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c84 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001c88 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001c88 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001c8c (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001c8c (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001c90 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001c90 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001c94 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001c94 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001c98 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001c98 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001c9c (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001c9c (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001ca0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001ca0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001ca4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001ca4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001ca8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001ca8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cac (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cac (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cb0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cb0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cb4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cb4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cb8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cb8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cbc (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cbc (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cc0 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cc0 (0x16c000ef) x1 0x0000000080001cc4 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: 0x0000000080001e2c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e2c (0xc00027f3) x15 0x000000000000055a +core 0: 0x0000000080001e30 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e30 (0x00000617) x12 0x0000000080001e30 +core 0: 0x0000000080001e34 (0x11060613) addi a2, a2, 272 +core 0: 3 0x0000000080001e34 (0x11060613) x12 0x0000000080001f40 +core 0: 0x0000000080001e38 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e38 (0x00000697) x13 0x0000000080001e38 +core 0: 0x0000000080001e3c (0x50868693) addi a3, a3, 1288 +core 0: 3 0x0000000080001e3c (0x50868693) x13 0x0000000080002340 +core 0: 0x0000000080001e40 (0x00060713) mv a4, a2 +core 0: 3 0x0000000080001e40 (0x00060713) x14 0x0000000080001f40 +core 0: 0x0000000080001e44 (0x00068513) mv a0, a3 +core 0: 3 0x0000000080001e44 (0x00068513) x10 0x0000000080002340 +core 0: 0x0000000080001e48 (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e48 (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001e4c (0x00001597) x11 0x0000000080002e4c +core 0: 0x0000000080001e50 (0xce458593) addi a1, a1, -796 +core 0: 3 0x0000000080001e50 (0xce458593) x11 0x0000000080002b30 +core 0: 0x0000000080001e54 (0x08000e13) li t3, 128 +core 0: 3 0x0000000080001e54 (0x08000e13) x28 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001f40 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b30 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000000a mem 0x0000000080002340 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b30 0x000000000000000a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f48 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002348 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f48 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b38 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f50 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002350 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b40 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f58 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002358 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001f58 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b48 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000028 mem 0x0000000080002358 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b48 0x0000000000000028 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f60 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002360 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b50 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f68 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002368 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b58 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000003c mem 0x0000000080002368 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b58 0x000000000000003c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f70 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002370 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b60 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000046 mem 0x0000000080002370 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b60 0x0000000000000046 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f78 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002378 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b68 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f80 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002380 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b70 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000005a mem 0x0000000080002380 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b70 0x000000000000005a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f88 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002388 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b78 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f90 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002390 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b80 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001f98 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002398 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b88 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fa0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023a0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001fa0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b90 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000082 mem 0x00000000800023a0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b90 0x0000000000000082 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fa8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023a8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002b98 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000008c mem 0x00000000800023a8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002b98 0x000000000000008c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fb0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023b0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ba0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ba0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fb8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023b8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ba8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000000a0 mem 0x00000000800023b8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ba8 0x00000000000000a0 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fc0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023c0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bb0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000000aa mem 0x00000000800023c0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bb0 0x00000000000000aa +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fc8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023c8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bb8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fd0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023d0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bc0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bc0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fd8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023d8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bc8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000000c8 mem 0x00000000800023d8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bc8 0x00000000000000c8 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fe0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023e0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001fe0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bd0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001fe8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023e8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bd8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bd8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001ff0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023f0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080001ff0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002be0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000000e6 mem 0x00000000800023f0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002be0 0x00000000000000e6 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080001ff8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800023f8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080001ff8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002be8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002000 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002400 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002000 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bf0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000000fa mem 0x0000000080002400 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bf0 0x00000000000000fa +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002008 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002408 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002bf8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000104 mem 0x0000000080002408 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002bf8 0x0000000000000104 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002010 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002410 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002010 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c00 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002018 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002418 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c08 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c08 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002020 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002420 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c10 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002028 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002428 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c18 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000012c mem 0x0000000080002428 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c18 0x000000000000012c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002030 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002430 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c20 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000136 mem 0x0000000080002430 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c20 0x0000000000000136 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002038 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002438 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002038 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c28 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002040 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002440 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c30 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c30 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002048 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002448 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002048 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c38 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000154 mem 0x0000000080002448 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c38 0x0000000000000154 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002050 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002450 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c40 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000015e mem 0x0000000080002450 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c40 0x000000000000015e +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002058 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002458 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c48 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c48 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002060 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002460 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c50 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002068 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002468 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c58 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000017c mem 0x0000000080002468 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c58 0x000000000000017c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002070 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002470 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002070 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c60 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002078 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002478 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c68 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002080 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002480 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c70 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000019a mem 0x0000000080002480 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c70 0x000000000000019a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002088 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002488 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c78 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002090 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002490 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002090 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c80 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000001ae mem 0x0000000080002490 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c80 0x00000000000001ae +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002098 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002498 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c88 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000001b8 mem 0x0000000080002498 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c88 0x00000000000001b8 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020a0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024a0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020a0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c90 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020a8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024a8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002c98 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000001cc mem 0x00000000800024a8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002c98 0x00000000000001cc +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020b0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024b0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020b0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ca0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020b8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024b8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ca8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ca8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020c0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024c0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cb0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000001ea mem 0x00000000800024c0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cb0 0x00000000000001ea +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020c8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024c8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cb8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020d0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024d0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cc0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020d8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024d8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800020d8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cc8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000208 mem 0x00000000800024d8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cc8 0x0000000000000208 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020e0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024e0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cd0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000212 mem 0x00000000800024e0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cd0 0x0000000000000212 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020e8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024e8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020e8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cd8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020f0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024f0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800020f0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ce0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000226 mem 0x00000000800024f0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ce0 0x0000000000000226 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800020f8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800024f8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800020f8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ce8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002100 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002500 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cf0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002108 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002508 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002cf8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002cf8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002110 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002510 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d00 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000024e mem 0x0000000080002510 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d00 0x000000000000024e +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002118 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002518 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d08 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000258 mem 0x0000000080002518 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d08 0x0000000000000258 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002120 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002520 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d10 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000262 mem 0x0000000080002520 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d10 0x0000000000000262 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002128 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002528 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d18 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d18 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002130 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002530 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d20 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000276 mem 0x0000000080002530 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d20 0x0000000000000276 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002138 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002538 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002138 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d28 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002140 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002540 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002140 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d30 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000028a mem 0x0000000080002540 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d30 0x000000000000028a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002148 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002548 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002148 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d38 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002150 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002550 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d40 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002158 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002558 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002158 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d48 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000002a8 mem 0x0000000080002558 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d48 0x00000000000002a8 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002160 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002560 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d50 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002168 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002568 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d58 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000002bc mem 0x0000000080002568 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d58 0x00000000000002bc +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002170 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002570 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d60 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000002c6 mem 0x0000000080002570 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d60 0x00000000000002c6 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002178 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002578 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d68 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002180 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002580 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d70 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000002da mem 0x0000000080002580 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d70 0x00000000000002da +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002188 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002588 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d78 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002190 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002590 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d80 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002198 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002598 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d88 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021a0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025a0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021a0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d90 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000302 mem 0x00000000800025a0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d90 0x0000000000000302 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021a8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025a8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002d98 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000030c mem 0x00000000800025a8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002d98 0x000000000000030c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021b0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025b0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002da0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002da0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021b8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025b8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002da8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000320 mem 0x00000000800025b8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002da8 0x0000000000000320 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021c0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025c0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002db0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000032a mem 0x00000000800025c0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002db0 0x000000000000032a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021c8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025c8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002db8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002db8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021d0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025d0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002dc0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002dc0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021d8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025d8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002dc8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000348 mem 0x00000000800025d8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002dc8 0x0000000000000348 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021e0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025e0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021e0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002dd0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021e8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025e8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002dd8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002dd8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021f0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025f0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800021f0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002de0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000366 mem 0x00000000800025f0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002de0 0x0000000000000366 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800021f8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800025f8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800021f8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002de8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002200 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002600 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002200 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002df0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000037a mem 0x0000000080002600 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002df0 0x000000000000037a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002208 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002608 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002df8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000384 mem 0x0000000080002608 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002df8 0x0000000000000384 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002210 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002610 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002210 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e00 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002218 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002618 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e08 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e08 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002220 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002620 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e10 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002228 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002628 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e18 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000003ac mem 0x0000000080002628 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e18 0x00000000000003ac +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002230 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002630 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e20 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000003b6 mem 0x0000000080002630 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e20 0x00000000000003b6 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002238 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002638 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002238 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e28 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002240 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002640 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e30 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e30 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002248 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002648 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002248 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e38 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000003d4 mem 0x0000000080002648 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e38 0x00000000000003d4 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002250 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002650 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e40 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000003de mem 0x0000000080002650 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e40 0x00000000000003de +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002258 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002658 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e48 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e48 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002260 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002660 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e50 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e50 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002268 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002668 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e58 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000003fc mem 0x0000000080002668 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e58 0x00000000000003fc +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002270 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002670 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002270 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e60 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002278 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002678 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e68 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e68 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002280 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002680 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e70 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000041a mem 0x0000000080002680 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e70 0x000000000000041a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002288 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002688 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e78 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e78 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002290 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002690 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002290 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e80 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000042e mem 0x0000000080002690 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e80 0x000000000000042e +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002298 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002698 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e88 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000438 mem 0x0000000080002698 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e88 0x0000000000000438 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022a0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026a0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022a0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e90 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022a8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026a8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002e98 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000044c mem 0x00000000800026a8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002e98 0x000000000000044c +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022b0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026b0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022b0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ea0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022b8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026b8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ea8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ea8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022c0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026c0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002eb0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x000000000000046a mem 0x00000000800026c0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002eb0 0x000000000000046a +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022c8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026c8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002eb8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002eb8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022d0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026d0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ec0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ec0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022d8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026d8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800022d8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ec8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000488 mem 0x00000000800026d8 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ec8 0x0000000000000488 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022e0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026e0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ed0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x0000000000000492 mem 0x00000000800026e0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ed0 0x0000000000000492 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022e8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026e8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022e8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ed8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ed8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022f0 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026f0 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x00000000800022f0 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ee0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000004a6 mem 0x00000000800026f0 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ee0 0x00000000000004a6 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x00000000800022f8 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x00000000800026f8 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x00000000800022f8 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ee8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ee8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002300 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002700 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ef0 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ef0 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002308 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002708 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002ef8 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002ef8 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002310 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002710 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f00 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000004ce mem 0x0000000080002710 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f00 0x00000000000004ce +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002318 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002718 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f08 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000004d8 mem 0x0000000080002718 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f08 0x00000000000004d8 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002320 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002720 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f10 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000004e2 mem 0x0000000080002720 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f10 0x00000000000004e2 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002328 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002728 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002328 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f18 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f18 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002330 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002730 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000000 mem 0x0000000080002330 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f20 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e6c (0x00053803) ld a6, 0(a0) +core 0: 3 0x0000000080001e6c (0x00053803) x16 0x00000000000004f6 mem 0x0000000080002730 +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f20 0x00000000000004f6 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002338 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002738 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e58 (0x00073303) ld t1, 0(a4) +core 0: 3 0x0000000080001e58 (0x00073303) x6 0x0000000000000001 mem 0x0000000080002338 +core 0: 0x0000000080001e5c (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001e5c (0x20b7e8b3) x17 0x0000000080002f28 +core 0: 0x0000000080001e60 (0x00000813) li a6, 0 +core 0: 3 0x0000000080001e60 (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e64 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e68 (0x00031463) bnez t1, pc + 8 +core 0: 3 0x0000000080001e68 (0x00031463) +core 0: 0x0000000080001e70 (0x0108b023) sd a6, 0(a7) +core 0: 3 0x0000000080001e70 (0x0108b023) mem 0x0000000080002f28 0x0000000000000000 +core 0: 0x0000000080001e74 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001e74 (0x00870713) x14 0x0000000080002340 +core 0: 0x0000000080001e78 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001e78 (0x00850513) x10 0x0000000080002740 +core 0: 0x0000000080001e7c (0xfdc79ee3) bne a5, t3, pc - 36 +core 0: 3 0x0000000080001e7c (0xfdc79ee3) +core 0: 0x0000000080001e80 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e80 (0xc00027f3) x15 0x0000000000000ffd +core 0: 0x0000000080001e84 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e84 (0xc00027f3) x15 0x0000000000001006 +core 0: 0x0000000080001e88 (0x00000817) auipc a6, 0x0 +core 0: 3 0x0000000080001e88 (0x00000817) x16 0x0000000080001e88 +core 0: 0x0000000080001e8c (0x4b880813) addi a6, a6, 1208 +core 0: 3 0x0000000080001e8c (0x4b880813) x16 0x0000000080002340 +core 0: 0x0000000080001e90 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001e90 (0x00000517) x10 0x0000000080001e90 +core 0: 0x0000000080001e94 (0x0b050513) addi a0, a0, 176 +core 0: 3 0x0000000080001e94 (0x0b050513) x10 0x0000000080001f40 +core 0: 0x0000000080001e98 (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e98 (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e9c (0x08000313) li t1, 128 +core 0: 3 0x0000000080001e9c (0x08000313) x6 0x0000000000000080 +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001f40 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b30 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f48 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002348 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f48 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b38 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000014 mem 0x0000000080002348 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b38 0x0000000000000014 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f50 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002350 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b40 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000001e mem 0x0000000080002350 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b40 0x000000000000001e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f58 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002358 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001f58 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b48 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b48 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f60 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002360 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b50 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000032 mem 0x0000000080002360 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b50 0x0000000000000032 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f68 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002368 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b58 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f70 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002370 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b60 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b60 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f78 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002378 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b68 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000050 mem 0x0000000080002378 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b68 0x0000000000000050 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f80 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002380 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b70 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f88 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002388 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b78 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000064 mem 0x0000000080002388 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b78 0x0000000000000064 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f90 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002390 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b80 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000006e mem 0x0000000080002390 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b80 0x000000000000006e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001f98 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002398 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b88 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000078 mem 0x0000000080002398 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b88 0x0000000000000078 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fa0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023a0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001fa0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b90 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b90 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fa8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023a8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002b98 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002b98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fb0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023b0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ba0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000096 mem 0x00000000800023b0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ba0 0x0000000000000096 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fb8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023b8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ba8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fc0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023c0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bb0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fc8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023c8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bb8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000000b4 mem 0x00000000800023c8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bb8 0x00000000000000b4 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fd0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023d0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bc0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000000be mem 0x00000000800023d0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bc0 0x00000000000000be +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fd8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023d8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bc8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fe0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023e0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001fe0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bd0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000000d2 mem 0x00000000800023e0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bd0 0x00000000000000d2 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001fe8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023e8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bd8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000000dc mem 0x00000000800023e8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bd8 0x00000000000000dc +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001ff0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023f0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080001ff0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002be0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002be0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080001ff8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800023f8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080001ff8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002be8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000000f0 mem 0x00000000800023f8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002be8 0x00000000000000f0 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002000 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002400 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002000 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bf0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bf0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002008 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002408 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002bf8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002bf8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002010 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002410 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002010 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c00 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000010e mem 0x0000000080002410 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c00 0x000000000000010e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002018 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002418 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c08 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000118 mem 0x0000000080002418 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c08 0x0000000000000118 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002020 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002420 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c10 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000122 mem 0x0000000080002420 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c10 0x0000000000000122 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002028 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002428 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c18 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002030 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002430 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c20 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002038 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002438 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002038 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c28 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000140 mem 0x0000000080002438 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c28 0x0000000000000140 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002040 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002440 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c30 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000014a mem 0x0000000080002440 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c30 0x000000000000014a +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002048 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002448 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002048 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c38 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c38 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002050 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002450 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c40 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002058 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002458 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c48 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000168 mem 0x0000000080002458 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c48 0x0000000000000168 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002060 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002460 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c50 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000172 mem 0x0000000080002460 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c50 0x0000000000000172 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002068 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002468 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c58 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002070 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002470 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002070 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c60 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000186 mem 0x0000000080002470 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c60 0x0000000000000186 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002078 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002478 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c68 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000190 mem 0x0000000080002478 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c68 0x0000000000000190 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002080 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002480 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c70 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002088 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002488 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c78 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001a4 mem 0x0000000080002488 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c78 0x00000000000001a4 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002090 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002490 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002090 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c80 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002098 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002498 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c88 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c88 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020a0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024a0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020a0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c90 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001c2 mem 0x00000000800024a0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c90 0x00000000000001c2 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020a8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024a8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002c98 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020b0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024b0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020b0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ca0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001d6 mem 0x00000000800024b0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ca0 0x00000000000001d6 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020b8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024b8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ca8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001e0 mem 0x00000000800024b8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ca8 0x00000000000001e0 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020c0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024c0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cb0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020c8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024c8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cb8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001f4 mem 0x00000000800024c8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cb8 0x00000000000001f4 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020d0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024d0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cc0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000001fe mem 0x00000000800024d0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cc0 0x00000000000001fe +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020d8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024d8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800020d8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cc8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020e0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024e0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cd0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cd0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020e8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024e8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020e8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cd8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000021c mem 0x00000000800024e8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cd8 0x000000000000021c +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020f0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024f0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800020f0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ce0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ce0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800020f8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800024f8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800020f8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ce8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000230 mem 0x00000000800024f8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ce8 0x0000000000000230 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002100 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002500 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cf0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000023a mem 0x0000000080002500 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cf0 0x000000000000023a +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002108 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002508 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002cf8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000244 mem 0x0000000080002508 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002cf8 0x0000000000000244 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002110 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002510 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d00 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002118 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002518 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d08 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d08 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002120 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002520 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d10 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d10 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002128 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002528 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d18 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000026c mem 0x0000000080002528 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d18 0x000000000000026c +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002130 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002530 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d20 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002138 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002538 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002138 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d28 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000280 mem 0x0000000080002538 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d28 0x0000000000000280 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002140 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002540 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002140 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d30 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d30 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002148 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002548 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002148 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d38 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000294 mem 0x0000000080002548 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d38 0x0000000000000294 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002150 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002550 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d40 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000029e mem 0x0000000080002550 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d40 0x000000000000029e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002158 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002558 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002158 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d48 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d48 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002160 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002560 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d50 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000002b2 mem 0x0000000080002560 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d50 0x00000000000002b2 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002168 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002568 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d58 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002170 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002570 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d60 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d60 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002178 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002578 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d68 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000002d0 mem 0x0000000080002578 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d68 0x00000000000002d0 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002180 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002580 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d70 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002188 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002588 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d78 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000002e4 mem 0x0000000080002588 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d78 0x00000000000002e4 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002190 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002590 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d80 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000002ee mem 0x0000000080002590 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d80 0x00000000000002ee +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002198 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002598 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d88 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000002f8 mem 0x0000000080002598 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d88 0x00000000000002f8 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021a0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025a0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021a0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d90 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d90 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021a8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025a8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002d98 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002d98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021b0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025b0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002da0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000316 mem 0x00000000800025b0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002da0 0x0000000000000316 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021b8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025b8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002da8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021c0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025c0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002db0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021c8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025c8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002db8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000334 mem 0x00000000800025c8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002db8 0x0000000000000334 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021d0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025d0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002dc0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000033e mem 0x00000000800025d0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dc0 0x000000000000033e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021d8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025d8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002dc8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021e0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025e0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021e0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002dd0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000352 mem 0x00000000800025e0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dd0 0x0000000000000352 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021e8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025e8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002dd8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000035c mem 0x00000000800025e8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002dd8 0x000000000000035c +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021f0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025f0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800021f0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002de0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002de0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800021f8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800025f8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800021f8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002de8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000370 mem 0x00000000800025f8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002de8 0x0000000000000370 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002200 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002600 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002200 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002df0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002df0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002208 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002608 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002df8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002df8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002210 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002610 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002210 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e00 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000038e mem 0x0000000080002610 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e00 0x000000000000038e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002218 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002618 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e08 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000398 mem 0x0000000080002618 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e08 0x0000000000000398 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002220 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002620 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e10 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000003a2 mem 0x0000000080002620 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e10 0x00000000000003a2 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002228 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002628 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e18 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002230 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002630 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e20 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002238 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002638 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002238 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e28 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000003c0 mem 0x0000000080002638 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e28 0x00000000000003c0 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002240 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002640 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e30 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000003ca mem 0x0000000080002640 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e30 0x00000000000003ca +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002248 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002648 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002248 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e38 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e38 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002250 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002650 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e40 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002258 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002658 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e48 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000003e8 mem 0x0000000080002658 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e48 0x00000000000003e8 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002260 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002660 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e50 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000003f2 mem 0x0000000080002660 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e50 0x00000000000003f2 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002268 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002668 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e58 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002270 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002670 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002270 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e60 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000406 mem 0x0000000080002670 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e60 0x0000000000000406 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002278 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002678 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e68 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000410 mem 0x0000000080002678 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e68 0x0000000000000410 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002280 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002680 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e70 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002288 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002688 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e78 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000424 mem 0x0000000080002688 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e78 0x0000000000000424 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002290 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002690 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002290 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e80 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e80 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002298 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002698 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e88 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e88 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022a0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026a0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022a0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e90 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000442 mem 0x00000000800026a0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e90 0x0000000000000442 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022a8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026a8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002e98 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022b0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026b0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022b0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ea0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000456 mem 0x00000000800026b0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ea0 0x0000000000000456 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022b8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026b8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ea8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000460 mem 0x00000000800026b8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ea8 0x0000000000000460 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022c0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026c0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002eb0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022c8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026c8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002eb8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000474 mem 0x00000000800026c8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002eb8 0x0000000000000474 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022d0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026d0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ec0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000047e mem 0x00000000800026d0 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ec0 0x000000000000047e +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022d8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026d8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800022d8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ec8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ec8 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022e0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026e0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ed0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ed0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022e8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026e8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022e8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ed8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x000000000000049c mem 0x00000000800026e8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ed8 0x000000000000049c +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022f0 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026f0 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x00000000800022f0 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ee0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ee0 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x00000000800022f8 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x00000000800026f8 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x00000000800022f8 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ee8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000004b0 mem 0x00000000800026f8 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ee8 0x00000000000004b0 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002300 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002700 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ef0 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000004ba mem 0x0000000080002700 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ef0 0x00000000000004ba +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002308 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002708 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002ef8 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000004c4 mem 0x0000000080002708 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002ef8 0x00000000000004c4 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002310 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002710 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f00 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f00 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002318 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002718 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f08 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f08 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002320 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002720 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f10 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f10 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002328 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002728 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002328 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f18 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x00000000000004ec mem 0x0000000080002728 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f18 0x00000000000004ec +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002330 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002730 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000000 mem 0x0000000080002330 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f20 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f20 0x0000000000000000 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002338 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002738 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ea0 (0x00053703) ld a4, 0(a0) +core 0: 3 0x0000000080001ea0 (0x00053703) x14 0x0000000000000001 mem 0x0000000080002338 +core 0: 0x0000000080001ea4 (0x20b7e8b3) sh3add a7, a5, a1 +core 0: 3 0x0000000080001ea4 (0x20b7e8b3) x17 0x0000000080002f28 +core 0: 0x0000000080001ea8 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ea8 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001eac (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001eac (0x00070463) +core 0: 0x0000000080001eb0 (0x00083703) ld a4, 0(a6) +core 0: 3 0x0000000080001eb0 (0x00083703) x14 0x0000000000000500 mem 0x0000000080002738 +core 0: 0x0000000080001eb4 (0x00e8b023) sd a4, 0(a7) +core 0: 3 0x0000000080001eb4 (0x00e8b023) mem 0x0000000080002f28 0x0000000000000500 +core 0: 0x0000000080001eb8 (0x00850513) addi a0, a0, 8 +core 0: 3 0x0000000080001eb8 (0x00850513) x10 0x0000000080002340 +core 0: 0x0000000080001ebc (0x00880813) addi a6, a6, 8 +core 0: 3 0x0000000080001ebc (0x00880813) x16 0x0000000080002740 +core 0: 0x0000000080001ec0 (0xfe6790e3) bne a5, t1, pc - 32 +core 0: 3 0x0000000080001ec0 (0xfe6790e3) +core 0: 0x0000000080001ec4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ec4 (0xc00027f3) x15 0x00000000000016dc +core 0: 0x0000000080001ec8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ec8 (0xc00027f3) x15 0x00000000000016e5 +core 0: 0x0000000080001ecc (0x00000717) auipc a4, 0x0 +core 0: 3 0x0000000080001ecc (0x00000717) x14 0x0000000080001ecc +core 0: 0x0000000080001ed0 (0x47470713) addi a4, a4, 1140 +core 0: 3 0x0000000080001ed0 (0x47470713) x14 0x0000000080002340 +core 0: 0x0000000080001ed4 (0x00000793) li a5, 0 +core 0: 3 0x0000000080001ed4 (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x08000e93) li t4, 128 +core 0: 3 0x0000000080001ed8 (0x08000e93) x29 0x0000000000000080 +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000000a mem 0x0000000080002340 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000000a mem 0x0000000080002340 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001f40 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b30 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000000a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000000a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b30 0x000000000000000a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002348 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002348 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f48 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000014 mem 0x0000000080002348 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000014 mem 0x0000000080002348 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f48 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b38 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000014 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b38 0x0000000000000014 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002350 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002350 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f50 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000001e mem 0x0000000080002350 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000001e mem 0x0000000080002350 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b40 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000001e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b40 0x000000000000001e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002358 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002358 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f58 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000028 mem 0x0000000080002358 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000028 mem 0x0000000080002358 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001f58 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b48 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000028 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000028 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b48 0x0000000000000028 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002360 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002360 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f60 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000032 mem 0x0000000080002360 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000032 mem 0x0000000080002360 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b50 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000032 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b50 0x0000000000000032 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002368 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002368 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f68 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000003c mem 0x0000000080002368 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000003c mem 0x0000000080002368 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b58 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000003c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000003c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b58 0x000000000000003c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002370 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002370 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f70 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000046 mem 0x0000000080002370 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000046 mem 0x0000000080002370 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001f70 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b60 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000046 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000046 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b60 0x0000000000000046 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002378 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002378 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f78 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000050 mem 0x0000000080002378 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000050 mem 0x0000000080002378 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b68 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000050 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b68 0x0000000000000050 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002380 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002380 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f80 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000005a mem 0x0000000080002380 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000005a mem 0x0000000080002380 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b70 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000005a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000005a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b70 0x000000000000005a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002388 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002388 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f88 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000064 mem 0x0000000080002388 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000064 mem 0x0000000080002388 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b78 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000064 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b78 0x0000000000000064 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002390 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002390 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f90 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000006e mem 0x0000000080002390 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000006e mem 0x0000000080002390 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f90 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b80 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000006e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b80 0x000000000000006e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002398 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002398 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001f98 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000078 mem 0x0000000080002398 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000078 mem 0x0000000080002398 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b88 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000078 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b88 0x0000000000000078 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023a0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023a0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fa0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000082 mem 0x00000000800023a0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000082 mem 0x00000000800023a0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001fa0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b90 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000082 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000082 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b90 0x0000000000000082 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023a8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023a8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fa8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000008c mem 0x00000000800023a8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000008c mem 0x00000000800023a8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001fa8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002b98 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000008c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000008c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002b98 0x000000000000008c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023b0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023b0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fb0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000096 mem 0x00000000800023b0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000096 mem 0x00000000800023b0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ba0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000096 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ba0 0x0000000000000096 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023b8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023b8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fb8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000a0 mem 0x00000000800023b8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000a0 mem 0x00000000800023b8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ba8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000a0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000000a0 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ba8 0x00000000000000a0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023c0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023c0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fc0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000aa mem 0x00000000800023c0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000aa mem 0x00000000800023c0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bb0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000aa +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000000aa +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bb0 0x00000000000000aa +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023c8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023c8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fc8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000b4 mem 0x00000000800023c8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000b4 mem 0x00000000800023c8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bb8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000b4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bb8 0x00000000000000b4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023d0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023d0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fd0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000be mem 0x00000000800023d0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000be mem 0x00000000800023d0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bc0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000be +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bc0 0x00000000000000be +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023d8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023d8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fd8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000c8 mem 0x00000000800023d8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000c8 mem 0x00000000800023d8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bc8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000c8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000000c8 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bc8 0x00000000000000c8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023e0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023e0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fe0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000d2 mem 0x00000000800023e0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000d2 mem 0x00000000800023e0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001fe0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bd0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000d2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bd0 0x00000000000000d2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023e8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023e8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001fe8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000dc mem 0x00000000800023e8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000dc mem 0x00000000800023e8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bd8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000dc +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bd8 0x00000000000000dc +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023f0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023f0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001ff0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000e6 mem 0x00000000800023f0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000e6 mem 0x00000000800023f0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080001ff0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002be0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000e6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000000e6 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002be0 0x00000000000000e6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800023f8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800023f8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080001ff8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000f0 mem 0x00000000800023f8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000f0 mem 0x00000000800023f8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080001ff8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002be8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000f0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002be8 0x00000000000000f0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002400 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002400 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002000 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000000fa mem 0x0000000080002400 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000000fa mem 0x0000000080002400 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002000 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bf0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000000fa +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000000fa +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bf0 0x00000000000000fa +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002408 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002408 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002008 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000104 mem 0x0000000080002408 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000104 mem 0x0000000080002408 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002bf8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000104 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000104 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002bf8 0x0000000000000104 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002410 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002410 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002010 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000010e mem 0x0000000080002410 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000010e mem 0x0000000080002410 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002010 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c00 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000010e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c00 0x000000000000010e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002418 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002418 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002018 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000118 mem 0x0000000080002418 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000118 mem 0x0000000080002418 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c08 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000118 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c08 0x0000000000000118 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002420 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002420 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002020 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000122 mem 0x0000000080002420 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000122 mem 0x0000000080002420 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002020 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c10 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000122 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c10 0x0000000000000122 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002428 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002428 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002028 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000012c mem 0x0000000080002428 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000012c mem 0x0000000080002428 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c18 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000012c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000012c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c18 0x000000000000012c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002430 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002430 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002030 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000136 mem 0x0000000080002430 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000136 mem 0x0000000080002430 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c20 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000136 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000136 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c20 0x0000000000000136 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002438 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002438 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002038 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000140 mem 0x0000000080002438 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000140 mem 0x0000000080002438 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002038 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c28 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000140 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c28 0x0000000000000140 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002440 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002440 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002040 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000014a mem 0x0000000080002440 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000014a mem 0x0000000080002440 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c30 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000014a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c30 0x000000000000014a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002448 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002448 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002048 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000154 mem 0x0000000080002448 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000154 mem 0x0000000080002448 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002048 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c38 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000154 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000154 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c38 0x0000000000000154 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002450 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002450 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002050 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000015e mem 0x0000000080002450 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000015e mem 0x0000000080002450 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c40 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000015e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000015e +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c40 0x000000000000015e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002458 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002458 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002058 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000168 mem 0x0000000080002458 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000168 mem 0x0000000080002458 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c48 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000168 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c48 0x0000000000000168 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002460 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002460 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002060 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000172 mem 0x0000000080002460 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000172 mem 0x0000000080002460 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c50 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000172 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c50 0x0000000000000172 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002468 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002468 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002068 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000017c mem 0x0000000080002468 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000017c mem 0x0000000080002468 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c58 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000017c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000017c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c58 0x000000000000017c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002470 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002470 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002070 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000186 mem 0x0000000080002470 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000186 mem 0x0000000080002470 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002070 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c60 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000186 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c60 0x0000000000000186 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002478 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002478 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002078 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000190 mem 0x0000000080002478 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000190 mem 0x0000000080002478 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c68 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000190 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c68 0x0000000000000190 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002480 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002480 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002080 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000019a mem 0x0000000080002480 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000019a mem 0x0000000080002480 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c70 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000019a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000019a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c70 0x000000000000019a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002488 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002488 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002088 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001a4 mem 0x0000000080002488 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001a4 mem 0x0000000080002488 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c78 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001a4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c78 0x00000000000001a4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002490 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002490 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002090 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001ae mem 0x0000000080002490 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001ae mem 0x0000000080002490 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002090 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c80 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001ae +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000001ae +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c80 0x00000000000001ae +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002498 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002498 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002098 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001b8 mem 0x0000000080002498 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001b8 mem 0x0000000080002498 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c88 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001b8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000001b8 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c88 0x00000000000001b8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024a0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024a0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020a0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001c2 mem 0x00000000800024a0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001c2 mem 0x00000000800024a0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020a0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c90 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001c2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c90 0x00000000000001c2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024a8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024a8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020a8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001cc mem 0x00000000800024a8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001cc mem 0x00000000800024a8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002c98 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001cc +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000001cc +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002c98 0x00000000000001cc +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024b0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024b0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020b0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001d6 mem 0x00000000800024b0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001d6 mem 0x00000000800024b0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020b0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ca0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001d6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ca0 0x00000000000001d6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024b8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024b8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020b8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001e0 mem 0x00000000800024b8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001e0 mem 0x00000000800024b8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ca8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001e0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ca8 0x00000000000001e0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024c0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024c0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020c0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001ea mem 0x00000000800024c0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001ea mem 0x00000000800024c0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cb0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001ea +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000001ea +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cb0 0x00000000000001ea +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024c8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024c8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020c8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001f4 mem 0x00000000800024c8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001f4 mem 0x00000000800024c8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cb8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001f4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cb8 0x00000000000001f4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024d0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024d0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020d0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000001fe mem 0x00000000800024d0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000001fe mem 0x00000000800024d0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cc0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000001fe +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cc0 0x00000000000001fe +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024d8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024d8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020d8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000208 mem 0x00000000800024d8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000208 mem 0x00000000800024d8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800020d8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cc8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000208 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000208 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cc8 0x0000000000000208 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024e0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024e0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020e0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000212 mem 0x00000000800024e0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000212 mem 0x00000000800024e0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cd0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000212 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000212 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cd0 0x0000000000000212 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024e8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024e8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020e8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000021c mem 0x00000000800024e8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000021c mem 0x00000000800024e8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020e8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cd8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000021c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cd8 0x000000000000021c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024f0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024f0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020f0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000226 mem 0x00000000800024f0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000226 mem 0x00000000800024f0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800020f0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ce0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000226 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000226 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ce0 0x0000000000000226 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800024f8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800024f8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800020f8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000230 mem 0x00000000800024f8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000230 mem 0x00000000800024f8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800020f8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ce8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000230 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ce8 0x0000000000000230 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002500 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002500 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002100 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000023a mem 0x0000000080002500 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000023a mem 0x0000000080002500 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cf0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000023a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cf0 0x000000000000023a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002508 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002508 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002108 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000244 mem 0x0000000080002508 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000244 mem 0x0000000080002508 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002cf8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000244 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002cf8 0x0000000000000244 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002510 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002510 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002110 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000024e mem 0x0000000080002510 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000024e mem 0x0000000080002510 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d00 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000024e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000024e +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d00 0x000000000000024e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002518 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002518 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002118 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000258 mem 0x0000000080002518 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000258 mem 0x0000000080002518 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002118 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d08 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000258 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000258 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d08 0x0000000000000258 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002520 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002520 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002120 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000262 mem 0x0000000080002520 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000262 mem 0x0000000080002520 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002120 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d10 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000262 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000262 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d10 0x0000000000000262 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002528 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002528 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002128 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000026c mem 0x0000000080002528 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000026c mem 0x0000000080002528 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d18 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000026c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d18 0x000000000000026c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002530 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002530 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002130 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000276 mem 0x0000000080002530 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000276 mem 0x0000000080002530 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d20 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000276 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000276 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d20 0x0000000000000276 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002538 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002538 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002138 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000280 mem 0x0000000080002538 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000280 mem 0x0000000080002538 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002138 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d28 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d28 0x0000000000000280 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002540 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002540 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002140 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000028a mem 0x0000000080002540 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000028a mem 0x0000000080002540 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002140 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d30 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000028a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000028a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d30 0x000000000000028a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002548 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002548 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002148 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000294 mem 0x0000000080002548 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000294 mem 0x0000000080002548 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002148 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d38 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000294 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d38 0x0000000000000294 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002550 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002550 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002150 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000029e mem 0x0000000080002550 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000029e mem 0x0000000080002550 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d40 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000029e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d40 0x000000000000029e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002558 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002558 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002158 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002a8 mem 0x0000000080002558 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002a8 mem 0x0000000080002558 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002158 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d48 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002a8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000002a8 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d48 0x00000000000002a8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002560 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002560 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002160 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002b2 mem 0x0000000080002560 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002b2 mem 0x0000000080002560 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d50 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002b2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d50 0x00000000000002b2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002568 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002568 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002168 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002bc mem 0x0000000080002568 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002bc mem 0x0000000080002568 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d58 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002bc +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000002bc +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d58 0x00000000000002bc +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002570 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002570 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002170 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002c6 mem 0x0000000080002570 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002c6 mem 0x0000000080002570 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002170 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d60 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002c6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000002c6 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d60 0x00000000000002c6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002578 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002578 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002178 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002d0 mem 0x0000000080002578 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002d0 mem 0x0000000080002578 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d68 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002d0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d68 0x00000000000002d0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002580 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002580 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002180 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002da mem 0x0000000080002580 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002da mem 0x0000000080002580 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d70 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002da +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000002da +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d70 0x00000000000002da +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002588 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002588 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002188 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002e4 mem 0x0000000080002588 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002e4 mem 0x0000000080002588 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d78 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002e4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d78 0x00000000000002e4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002590 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002590 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002190 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002ee mem 0x0000000080002590 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002ee mem 0x0000000080002590 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002190 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d80 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002ee +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d80 0x00000000000002ee +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002598 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002598 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002198 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000002f8 mem 0x0000000080002598 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000002f8 mem 0x0000000080002598 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d88 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000002f8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d88 0x00000000000002f8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025a0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025a0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021a0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000302 mem 0x00000000800025a0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000302 mem 0x00000000800025a0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021a0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d90 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000302 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000302 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d90 0x0000000000000302 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025a8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025a8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021a8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000030c mem 0x00000000800025a8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000030c mem 0x00000000800025a8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002d98 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000030c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000030c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002d98 0x000000000000030c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025b0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025b0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021b0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000316 mem 0x00000000800025b0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000316 mem 0x00000000800025b0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002da0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000316 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002da0 0x0000000000000316 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025b8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025b8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021b8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000320 mem 0x00000000800025b8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000320 mem 0x00000000800025b8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002da8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000320 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000320 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002da8 0x0000000000000320 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025c0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025c0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021c0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000032a mem 0x00000000800025c0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000032a mem 0x00000000800025c0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002db0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000032a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000032a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002db0 0x000000000000032a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025c8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025c8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021c8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000334 mem 0x00000000800025c8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000334 mem 0x00000000800025c8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002db8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000334 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002db8 0x0000000000000334 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025d0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025d0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021d0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000033e mem 0x00000000800025d0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000033e mem 0x00000000800025d0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002dc0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000033e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002dc0 0x000000000000033e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025d8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025d8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021d8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000348 mem 0x00000000800025d8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000348 mem 0x00000000800025d8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002dc8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000348 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000348 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002dc8 0x0000000000000348 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025e0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025e0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021e0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000352 mem 0x00000000800025e0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000352 mem 0x00000000800025e0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021e0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002dd0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000352 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002dd0 0x0000000000000352 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025e8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025e8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021e8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000035c mem 0x00000000800025e8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000035c mem 0x00000000800025e8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002dd8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000035c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002dd8 0x000000000000035c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025f0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025f0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021f0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000366 mem 0x00000000800025f0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000366 mem 0x00000000800025f0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800021f0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002de0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000366 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000366 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002de0 0x0000000000000366 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800025f8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800025f8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800021f8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000370 mem 0x00000000800025f8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000370 mem 0x00000000800025f8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800021f8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002de8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000370 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002de8 0x0000000000000370 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002600 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002600 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002200 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000037a mem 0x0000000080002600 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000037a mem 0x0000000080002600 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002200 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002df0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000037a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000037a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002df0 0x000000000000037a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002608 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002608 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002208 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000384 mem 0x0000000080002608 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000384 mem 0x0000000080002608 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002df8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000384 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000384 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002df8 0x0000000000000384 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002610 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002610 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002210 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000038e mem 0x0000000080002610 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000038e mem 0x0000000080002610 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002210 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e00 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000038e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e00 0x000000000000038e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002618 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002618 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002218 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000398 mem 0x0000000080002618 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000398 mem 0x0000000080002618 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e08 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000398 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e08 0x0000000000000398 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002620 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002620 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002220 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003a2 mem 0x0000000080002620 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003a2 mem 0x0000000080002620 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002220 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e10 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003a2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e10 0x00000000000003a2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002628 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002628 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002228 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003ac mem 0x0000000080002628 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003ac mem 0x0000000080002628 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e18 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003ac +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000003ac +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e18 0x00000000000003ac +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002630 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002630 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002230 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003b6 mem 0x0000000080002630 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003b6 mem 0x0000000080002630 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e20 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003b6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000003b6 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e20 0x00000000000003b6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002638 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002638 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002238 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003c0 mem 0x0000000080002638 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003c0 mem 0x0000000080002638 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002238 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e28 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003c0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e28 0x00000000000003c0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002640 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002640 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002240 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003ca mem 0x0000000080002640 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003ca mem 0x0000000080002640 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e30 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003ca +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e30 0x00000000000003ca +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002648 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002648 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002248 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003d4 mem 0x0000000080002648 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003d4 mem 0x0000000080002648 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002248 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e38 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003d4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000003d4 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e38 0x00000000000003d4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002650 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002650 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002250 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003de mem 0x0000000080002650 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003de mem 0x0000000080002650 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e40 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003de +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000003de +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e40 0x00000000000003de +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002658 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002658 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002258 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003e8 mem 0x0000000080002658 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003e8 mem 0x0000000080002658 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e48 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003e8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e48 0x00000000000003e8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002660 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002660 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002260 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003f2 mem 0x0000000080002660 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003f2 mem 0x0000000080002660 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e50 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003f2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e50 0x00000000000003f2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002668 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002668 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002268 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000003fc mem 0x0000000080002668 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000003fc mem 0x0000000080002668 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e58 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000003fc +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000003fc +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e58 0x00000000000003fc +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002670 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002670 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002270 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000406 mem 0x0000000080002670 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000406 mem 0x0000000080002670 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002270 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e60 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000406 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e60 0x0000000000000406 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002678 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002678 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002278 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000410 mem 0x0000000080002678 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000410 mem 0x0000000080002678 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e68 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000410 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e68 0x0000000000000410 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002680 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002680 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002280 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000041a mem 0x0000000080002680 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000041a mem 0x0000000080002680 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e70 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000041a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000041a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e70 0x000000000000041a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002688 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002688 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002288 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000424 mem 0x0000000080002688 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000424 mem 0x0000000080002688 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e78 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000424 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e78 0x0000000000000424 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002690 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002690 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002290 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000042e mem 0x0000000080002690 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000042e mem 0x0000000080002690 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002290 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e80 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000042e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000042e +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e80 0x000000000000042e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002698 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002698 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002298 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000438 mem 0x0000000080002698 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000438 mem 0x0000000080002698 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e88 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000438 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000438 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e88 0x0000000000000438 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026a0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026a0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022a0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000442 mem 0x00000000800026a0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000442 mem 0x00000000800026a0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022a0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e90 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000442 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e90 0x0000000000000442 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026a8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026a8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022a8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000044c mem 0x00000000800026a8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000044c mem 0x00000000800026a8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002e98 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000044c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000044c +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002e98 0x000000000000044c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026b0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026b0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022b0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000456 mem 0x00000000800026b0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000456 mem 0x00000000800026b0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022b0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ea0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000456 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ea0 0x0000000000000456 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026b8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026b8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022b8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000460 mem 0x00000000800026b8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000460 mem 0x00000000800026b8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ea8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000460 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ea8 0x0000000000000460 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026c0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026c0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022c0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000046a mem 0x00000000800026c0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000046a mem 0x00000000800026c0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002eb0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000046a +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x000000000000046a +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002eb0 0x000000000000046a +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026c8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026c8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022c8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000474 mem 0x00000000800026c8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000474 mem 0x00000000800026c8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002eb8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000474 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002eb8 0x0000000000000474 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026d0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026d0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022d0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000047e mem 0x00000000800026d0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000047e mem 0x00000000800026d0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022d0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ec0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000047e +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ec0 0x000000000000047e +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026d8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026d8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000488 mem 0x00000000800026d8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000488 mem 0x00000000800026d8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800022d8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ec8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000488 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000488 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ec8 0x0000000000000488 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026e0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026e0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000492 mem 0x00000000800026e0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000492 mem 0x00000000800026e0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800022e0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ed0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000492 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x0000000000000492 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ed0 0x0000000000000492 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026e8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026e8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x000000000000049c mem 0x00000000800026e8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x000000000000049c mem 0x00000000800026e8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022e8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ed8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x000000000000049c +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ed8 0x000000000000049c +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026f0 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026f0 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004a6 mem 0x00000000800026f0 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004a6 mem 0x00000000800026f0 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x00000000800022f0 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ee0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004a6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000004a6 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ee0 0x00000000000004a6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x00000000800026f8 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x00000000800026f8 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004b0 mem 0x00000000800026f8 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004b0 mem 0x00000000800026f8 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x00000000800022f8 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ee8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004b0 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ee8 0x00000000000004b0 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002700 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002700 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004ba mem 0x0000000080002700 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004ba mem 0x0000000080002700 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002300 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ef0 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004ba +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ef0 0x00000000000004ba +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002708 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002708 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004c4 mem 0x0000000080002708 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004c4 mem 0x0000000080002708 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002308 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002ef8 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004c4 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002ef8 0x00000000000004c4 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002710 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002710 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004ce mem 0x0000000080002710 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004ce mem 0x0000000080002710 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002310 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f00 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004ce +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000004ce +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f00 0x00000000000004ce +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002718 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002718 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004d8 mem 0x0000000080002718 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004d8 mem 0x0000000080002718 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002318 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f08 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004d8 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000004d8 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f08 0x00000000000004d8 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002720 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002720 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004e2 mem 0x0000000080002720 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004e2 mem 0x0000000080002720 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f10 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004e2 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000004e2 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f10 0x00000000000004e2 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002728 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002728 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004ec mem 0x0000000080002728 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004ec mem 0x0000000080002728 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002328 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f18 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004ec +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f18 0x00000000000004ec +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002730 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002730 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x00000000000004f6 mem 0x0000000080002730 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x00000000000004f6 mem 0x0000000080002730 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000000 mem 0x0000000080002330 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f20 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x00000000000004f6 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001ef8 (0x0108f533) and a0, a7, a6 +core 0: 3 0x0000000080001ef8 (0x0108f533) x10 0x00000000000004f6 +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f20 0x00000000000004f6 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002738 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002738 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001edc (0x0006b883) ld a7, 0(a3) +core 0: 3 0x0000000080001edc (0x0006b883) x17 0x0000000000000500 mem 0x0000000080002738 +core 0: 0x0000000080001ee0 (0x00073803) ld a6, 0(a4) +core 0: 3 0x0000000080001ee0 (0x00073803) x16 0x0000000000000500 mem 0x0000000080002738 +core 0: 0x0000000080001ee4 (0x00063e03) ld t3, 0(a2) +core 0: 3 0x0000000080001ee4 (0x00063e03) x28 0x0000000000000001 mem 0x0000000080002338 +core 0: 0x0000000080001ee8 (0x20b7e333) sh3add t1, a5, a1 +core 0: 3 0x0000000080001ee8 (0x20b7e333) x6 0x0000000080002f28 +core 0: 0x0000000080001eec (0x0108e533) or a0, a7, a6 +core 0: 3 0x0000000080001eec (0x0108e533) x10 0x0000000000000500 +core 0: 0x0000000080001ef0 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001ef0 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001ef4 (0x000e1463) bnez t3, pc + 8 +core 0: 3 0x0000000080001ef4 (0x000e1463) +core 0: 0x0000000080001efc (0x00a33023) sd a0, 0(t1) +core 0: 3 0x0000000080001efc (0x00a33023) mem 0x0000000080002f28 0x0000000000000500 +core 0: 0x0000000080001f00 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001f00 (0x00868693) x13 0x0000000080002740 +core 0: 0x0000000080001f04 (0x00870713) addi a4, a4, 8 +core 0: 3 0x0000000080001f04 (0x00870713) x14 0x0000000080002740 +core 0: 0x0000000080001f08 (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001f08 (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001f0c (0xfdd798e3) bne a5, t4, pc - 48 +core 0: 3 0x0000000080001f0c (0xfdd798e3) +core 0: 0x0000000080001f10 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f10 (0xc00027f3) x15 0x0000000000001f86 +core 0: 0x0000000080001f14 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001f14 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001f18 (0x00008067) ret +core 0: 3 0x0000000080001f18 (0x00008067) +core 0: 0x0000000080001cc4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cc4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001cc8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001cc8 (0x000a0493) x9 0x0000000080022d40 +core 0: 0x0000000080001ccc (0xcf718413) addi s0, gp, -777 +core 0: 3 0x0000000080001ccc (0xcf718413) x8 0x0000000080003020 +core 0: 0x0000000080001cd0 (0xc0718913) addi s2, gp, -1017 +core 0: 3 0x0000000080001cd0 (0xc0718913) x18 0x0000000080002f30 +core 0: 0x0000000080001cd4 (0xde718993) addi s3, gp, -537 +core 0: 3 0x0000000080001cd4 (0xde718993) x19 0x0000000080003110 +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f30 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003020 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d40 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 core 0: >>>> sprintf core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 -core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 -core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) -core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fb0 +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003020 core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) -core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022cc0 +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d40 core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) -core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) -core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 -core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022cc0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d40 core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 -core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 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: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022cb8 core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 -core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) -core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) -core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000000004b12 +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000000001f86 core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) -core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000500 +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000080002740 core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) -core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) -core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) -core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 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: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022b50 core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) -core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cc0 +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d40 core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) -core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cc0 +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d40 core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) -core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ec0 +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f30 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) -core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) -core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) -core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) -core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) -core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) -core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) -core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) -core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002b20 core 0: 0x000000008000103c (0x00068b93) mv s7, a3 -core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 core 0: 0x0000000080001040 (0x00058913) mv s2, a1 -core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 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: 0x0000000080001050 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b20 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002b21 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b21 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -22538,19 +9037,19 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b22 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: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002880 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 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: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022ce0 core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 @@ -22562,13 +9061,13 @@ 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: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022ce8 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: 0x0000000080001378 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 core 0: 0x000000008000137c (0x02800513) li a0, 40 core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 @@ -22578,16458 +9077,9462 @@ 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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc0 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d40 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: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d40 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d40 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f30 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d4b mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d4b 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d4b mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003028 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f38 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d4b +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f38 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003028 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d4b +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003028 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d4b +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d4b +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d4b +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d4b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d4b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d4b mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d4b mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f38 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d56 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d56 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d56 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003030 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f40 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d56 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f40 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003030 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d56 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003030 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d56 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d56 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d56 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d56 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d56 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d56 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d56 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f40 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d61 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d61 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d61 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003038 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f48 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d61 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f48 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003038 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d61 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003038 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d61 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d61 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d61 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d61 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d61 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d61 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d61 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f48 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d6c mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d6c 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d6c mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003040 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f50 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d6c +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f50 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003040 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d6c +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003040 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d6c +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d6c +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d6c +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d6c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d6c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d6c mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d6c mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f50 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d77 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d77 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d77 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003048 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f58 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d77 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f58 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003048 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d77 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003048 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d77 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d77 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d77 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d77 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d77 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d77 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d77 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f58 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d82 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d82 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d82 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003050 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f60 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d82 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f60 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003050 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d82 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003050 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d82 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d82 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d82 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d82 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d82 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d82 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d82 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f60 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d8d mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d8d 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d8d mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003058 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f68 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d8d +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003058 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d8d +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003058 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d8d +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d8d +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d8d +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d8d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d8d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d8d mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d8d mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f68 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d98 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d98 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d98 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003060 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f70 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022d98 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f70 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003060 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022d98 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003060 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022d98 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d98 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022d98 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022d98 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022d98 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d98 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d98 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f70 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022da3 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022da3 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022da3 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003068 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f78 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022da3 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f78 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003068 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022da3 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003068 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022da3 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022da3 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022da3 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022da3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022da3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022daa mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022dab mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022dac mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022da3 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022da3 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f78 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dae mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dae 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dae mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003070 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f80 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022dae +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f80 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003070 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022dae +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003070 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dae +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dae +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dae +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dae +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dae +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dae mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dae mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f80 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022db9 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022db9 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022db9 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003078 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f88 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022db9 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f88 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003078 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022db9 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003078 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022db9 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022db9 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022db9 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022db9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022db9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022db9 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022db9 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f88 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dc4 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dc4 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003080 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f90 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022dc4 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f90 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003080 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022dc4 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003080 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dc4 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dc4 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dc4 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dc4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dc4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022dca mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dc4 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dc4 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f90 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dcf mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dcf 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dcf mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003088 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002f98 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022dcf +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f98 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003088 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022dcf +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003088 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dcf +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dcf +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dcf +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dcf +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dcf +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002f98 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dcf mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dcf mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dda mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dda 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dda mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003090 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fa0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022dda +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003090 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022dda +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003090 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dda +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dda +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dda +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dda +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dda +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fa0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dda mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dda mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022de5 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022de5 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022de5 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003098 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fa8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022de5 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003098 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022de5 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003098 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022de5 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022de5 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022de5 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022de5 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022de5 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fa8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 core 0: 3 0x00000000800012f0 (0xfe0510e3) -core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 -core 0: 3 0x00000000800012d0 (0x0009c663) -core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 -core 0: 0x00000000800012e0 (0x000480e7) jalr s1 -core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022deb mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022dec mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022ded mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022dee mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 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 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022de5 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022de5 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022df0 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022df0 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022df0 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030a0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fb0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022df0 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022df0 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030a0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022df0 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022df0 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022df0 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022df0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022df0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fb0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cb8 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: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d 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: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39037,26 +18540,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df5 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df6 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfa +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x000000008000282e +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39064,92 +18567,92 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b22 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df6 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df7 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfb +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df7 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df7 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df8 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfc +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df8 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df8 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df9 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfd +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022df9 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002b26 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b26 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -39161,13 +18664,13 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b27 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: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002888 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 core 0: 0x00000000800010a8 (0x00078067) jr a5 @@ -39179,25 +18682,25 @@ 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: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022cf0 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: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022ce8 core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 -core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 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: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022b54 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: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022b50 0x00000000 core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 core 0: 3 0x00000000800011d0 (0x16d76463) core 0: 0x0000000080001338 (0x00000c13) li s8, 0 @@ -39207,13 +18710,13 @@ 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: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022b50 core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 -core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c 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: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022b50 core 0: 0x0000000080001224 (0x03000513) li a0, 48 core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 @@ -39221,22 +18724,22 @@ 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: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 -core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfe +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfa core 0: 0x00000000800013f0 (0x00008067) ret core 0: 3 0x00000000800013f0 (0x00008067) core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 @@ -39244,196 +18747,196 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dff +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) -core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df4 mem 0x0000000080022c20 +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df0 mem 0x0000000080022ca0 core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) -core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df4 mem 0x0000000080022c18 +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df0 mem 0x0000000080022c98 core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) -core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c10 +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fb0 mem 0x0000000080022c90 core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) -core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) -core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) -core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) -core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) -core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) -core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) -core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 -core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 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: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) -core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dff 0x00 +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dfb 0x00 core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) -core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dff mem 0x0000000080022c38 +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) -core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 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: 3 0x0000000080001a9c (0x02013403) x8 0x00000000800030a0 mem 0x0000000080022cd0 core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 -core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 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: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030a8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fb8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022dfb +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022dfb +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 core 0: >>>> sprintf core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 -core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 -core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) -core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003098 +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030a8 core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) -core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dff +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022dfb core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) -core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) -core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 -core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dff +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dfb core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 -core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 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: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022cb8 core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 -core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) -core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) -core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dff +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022dfb core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) -core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) -core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) -core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) -core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 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: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022b50 core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) -core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dff +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022dfb core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) -core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dff +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022dfb core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) -core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002fa8 +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fb8 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) -core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) -core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) -core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) -core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) -core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) -core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) -core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) -core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002b20 core 0: 0x000000008000103c (0x00068b93) mv s7, a3 -core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 core 0: 0x0000000080001040 (0x00058913) mv s2, a1 -core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 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: 0x0000000080001050 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b20 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002b21 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b21 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -39445,19 +18948,19 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b22 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: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002880 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 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: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022ce0 core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 @@ -39469,13 +18972,13 @@ 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: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022ce8 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: 0x0000000080001378 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 core 0: 0x000000008000137c (0x02800513) li a0, 40 core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 @@ -39485,26 +18988,26 @@ 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: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x28 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x28 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e00 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfc 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002899 core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39512,26 +19015,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x6e +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x6e core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e01 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfd 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: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000289a core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39539,26 +19042,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x75 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x75 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e02 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dfe 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289b core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39566,26 +19069,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e03 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022dff 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: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000289c core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39593,26 +19096,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x6c +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x6c core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e04 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000029 mem 0x000000008000282d +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000289d core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39620,26 +19123,26 @@ core 0: 3 0x00000000800012f0 (0xfe0510e3) core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 core 0: 3 0x00000000800012d0 (0x0009c663) core 0: 0x00000000800012dc (0x00090593) mv a1, s2 -core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022cb8 core 0: 0x00000000800012e0 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x29 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x29 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e05 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x000000008000282e +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000289e core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 @@ -39647,92 +19150,92 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b22 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e06 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e02 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002b23 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x3d +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x3d core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e07 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e07 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e03 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002b24 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x20 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x20 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e08 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e08 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e04 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: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002b25 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: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002b26 core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 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: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002b26 core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001084 (0x02000d13) li s10, 32 @@ -39744,13 +19247,13 @@ 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: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002b27 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: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002888 core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) -core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 core 0: 0x00000000800010a8 (0x00078067) jr a5 @@ -39762,25 +19265,25 @@ 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: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022cf0 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: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022ce8 core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 -core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 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: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022b54 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: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022b50 0x00000000 core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 core 0: 3 0x00000000800011d0 (0x16d76463) core 0: 0x0000000080001338 (0x00000c13) li s8, 0 @@ -39790,13 +19293,13 @@ 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: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022b50 core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 -core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c 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: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022b50 core 0: 0x0000000080001224 (0x03000513) li a0, 48 core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 @@ -39804,22 +19307,22 @@ 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: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 -core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x30 +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x30 core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e09 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e09 +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e05 core 0: 0x00000000800013f0 (0x00008067) ret core 0: 3 0x00000000800013f0 (0x00008067) core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 @@ -39827,2101 +19330,9097 @@ 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: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002b27 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x000000008000105c (0x00090593) x11 0x0000000080022cb8 core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 -core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 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: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cb8 core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x0a +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x0a core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cb8 core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 -core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0a +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) -core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e0a +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 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 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002b28 core 0: 0x000000008000106c (0xff4516e3) bne 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: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022ca8 core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) -core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dff mem 0x0000000080022c20 +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dfb mem 0x0000000080022ca0 core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) -core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dff mem 0x0000000080022c18 +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dfb mem 0x0000000080022c98 core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) -core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa8 mem 0x0000000080022c10 +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fb8 mem 0x0000000080022c90 core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) -core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) -core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) -core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) -core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) -core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) -core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) -core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 -core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 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: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e06 mem 0x0000000080022cb8 core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) -core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e0a 0x00 +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e06 0x00 core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) -core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e06 mem 0x0000000080022cb8 core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) -core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 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: 3 0x0000000080001a9c (0x02013403) x8 0x00000000800030a8 mem 0x0000000080022cd0 core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 -core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 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: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030b0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fc0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e06 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e06 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030b0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e06 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e06 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e06 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e06 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e06 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fc0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e07 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e08 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e09 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cb8 +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 0x0000000080022cb8 0x0000000080022e0a +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0b +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0b 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0c +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e0c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0d +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e0d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0d 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0e +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e0e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e0f +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e0f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e0f 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e0f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e10 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e10 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e10 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e10 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e10 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e11 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e11 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e06 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e06 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fc0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e11 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030b0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030b8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fc8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e11 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e11 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030b8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e11 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e11 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e11 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e11 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e11 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fc8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e11 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e12 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e12 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e12 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e13 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e13 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e13 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e14 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e14 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e14 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e15 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e15 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e15 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e16 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e16 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e16 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e17 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e17 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e17 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e17 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e17 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e18 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e18 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e18 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e18 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e18 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e19 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e19 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e19 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e19 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e19 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1a +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e1a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1a 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1b +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e1b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1b 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1c +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e11 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e11 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fc8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e1c 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030b8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030c0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fd0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e1c +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e1c +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030c0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e1c +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e1c +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e1c +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e1c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e1c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fd0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1c 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1d +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1d 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1e +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1e 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e1f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e1f +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e1f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e20 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e20 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e20 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e21 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e21 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e21 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e22 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e22 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e22 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e22 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e22 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e23 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e23 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e23 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e23 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e23 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e24 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e24 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e24 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e24 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e24 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e25 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e25 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e25 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e25 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e25 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e26 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e26 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e26 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e26 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e26 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e27 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e27 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e1c mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e1c mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fd0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e27 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030c0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030c8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fd8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e27 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e27 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030c8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e27 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e27 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e27 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e27 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e27 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fd8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e27 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e28 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e28 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e28 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e29 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e29 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e29 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2a +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2b +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2c +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2c 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2d +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e2d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2d 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2e +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e2e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2e 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e2f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e2f +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e2f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e2f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e2f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e30 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e30 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e30 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e30 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e30 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e31 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e31 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e31 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e31 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e31 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e32 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e32 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e27 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e27 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fd8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e32 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030c8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030d0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fe0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e32 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e32 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030d0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e32 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e32 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e32 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e32 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e32 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fe0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e32 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e33 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e33 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e33 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e34 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e34 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e34 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e35 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e35 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e35 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e36 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e36 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e36 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e37 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e37 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e37 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e38 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e38 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e38 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e38 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e38 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e39 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e39 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e39 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e39 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e39 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3a +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e3a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3b +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e3b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3b 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3c +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e3c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3c 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3d +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e32 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e32 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fe0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e3d 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030d0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030d8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002fe8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e3d +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e3d +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030d8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e3d +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e3d +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e3d +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e3d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e3d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002fe8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3d 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3e +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3e 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e3f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e3f +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e3f 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e40 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e40 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e40 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e41 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e41 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e41 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e42 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e42 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e42 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e43 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e43 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e43 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e43 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e43 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e44 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e44 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e44 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e44 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e44 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e45 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e45 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e45 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e45 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e45 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e46 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e46 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e46 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e46 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e46 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e47 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e47 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e47 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e47 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e47 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e48 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e48 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e3d mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e3d mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fe8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e48 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030d8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030e0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002ff0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e48 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e48 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030e0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e48 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e48 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e48 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e48 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e48 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002ff0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e48 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e49 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e49 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e49 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4a +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4a 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4b +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4c +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4d +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4d 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4e +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e4e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e4f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e4f +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e4f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e4f 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e4f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e50 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e50 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e50 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e50 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e50 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e51 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e51 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e51 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e51 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e51 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e52 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e52 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e52 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e52 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e52 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e53 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e53 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e48 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e48 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ff0 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e53 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030e0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030e8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002ff8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e53 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e53 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030e8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e53 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e53 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e53 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e53 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e53 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080002ff8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e53 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e54 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e54 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e54 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e55 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e55 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e55 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e56 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e56 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e56 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e57 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e57 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e57 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e58 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e58 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e58 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e59 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e59 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e59 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e59 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e59 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5a +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e5a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5a 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5b +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e5b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5c +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e5c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5c 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5d +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e5d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5d 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5e +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e53 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e53 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ff8 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e5e 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030e8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030f0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080003000 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e5e +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003000 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e5e +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030f0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e5e +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e5e +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e5e +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e5e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e5e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003000 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5e 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e5f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e5f +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e5f 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e60 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e60 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e60 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e61 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e61 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e61 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e62 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e62 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e62 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e63 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e63 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e63 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e64 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e64 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e64 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e64 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e64 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e65 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e65 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e65 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e65 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e65 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e66 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e66 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e66 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e66 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e66 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e67 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e67 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e67 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e67 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e67 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e68 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e68 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e68 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e68 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e68 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e69 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e69 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e5e mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e5e mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003000 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e69 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030f0 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x00000000800030f8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080003008 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e69 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003008 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e69 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x00000000800030f8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e69 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e69 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e69 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e69 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e69 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003008 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e69 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6a +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6a 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6b +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6b 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6c +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6d +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6e +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6e 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e6f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e6f +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e6f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e6f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e6f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e70 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e70 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e70 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e70 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e70 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e71 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e71 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e71 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e71 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e71 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e72 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e72 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e72 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e72 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e72 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e73 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e73 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e73 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e73 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e73 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e74 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e74 +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e69 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e69 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003008 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e74 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x00000000800030f8 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003100 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080003010 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e74 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003010 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003100 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e74 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003100 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e74 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e74 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e74 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e74 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e74 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003010 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e74 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e75 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e75 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e75 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e76 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e76 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e76 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e77 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e77 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e77 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e78 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e78 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e78 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e79 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e79 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e79 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7a +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e7a mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7a mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7b +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e7b mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7b 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7b mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7c +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e7c mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7c mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7d +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e7d mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7d 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7d mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7e +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e7e mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7e 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7e mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e7f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e7f +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e74 mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e74 mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003010 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e7f 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080003100 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003108 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080003018 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e7f +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003018 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003108 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022e7f +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xe3c58593) addi a1, a1, -452 +core 0: 3 0x0000000080001ce8 (0xe3c58593) x11 0x0000000080002b20 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022cb0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022ce0 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022cd0 0x0000000080003108 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022cb8 0x0000000080022e7f +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022ce0 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022ce8 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022e7f +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002b20 +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 0x0000000080022cb8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022ce0 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022cd8 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022cf8 0x0000000080022e7f +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022cf0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022d00 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022d08 0x0000000000000500 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022cc8 0x0000000080022ce0 +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 0x0000000080022b50 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022ca0 0x0000000080022e7f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c98 0x0000000080022e7f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c90 0x0000000080003018 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c80 0x0000000080022d40 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022c78 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022ca8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c88 0x0000000080003110 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022c58 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022c50 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 0x0000000080002b20 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022ce0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022cb8 +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 (0x6f4a8a93) addi s5, s5, 1780 +core 0: 3 0x0000000080001050 (0x6f4a8a93) x21 0x0000000080002740 +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 0x0000000080002b20 +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 0x0000000080002b21 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b21 +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 0x0000000080002b21 +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 0x0000000080002b22 +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 0x0000000080002880 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffeb60 mem 0x0000000080002880 +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 0x0000000080022ce0 +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 0x0000000080022ce8 +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 (0x524c0c13) addi s8, s8, 1316 +core 0: 3 0x0000000080001378 (0x524c0c13) x24 0x0000000080002898 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e7f 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e80 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e80 +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 0x0000000080002899 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002899 +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e80 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e81 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e81 +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 0x000000008000289a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289a +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e81 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e82 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e82 +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 0x000000008000289b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289b +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e82 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e83 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e83 +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 0x000000008000289c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289c +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e83 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e84 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e84 +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 0x000000008000289d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289d +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 0x0000000080022cb8 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e84 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e85 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e85 +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 0x000000008000289e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000289e +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 0x0000000080002b22 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b23 +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 0x0000000080022e85 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e85 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e85 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e86 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e86 +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 0x0000000080002b23 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b24 +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 0x0000000080022e86 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e86 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e86 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e87 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e87 +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 0x0000000080002b24 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b25 +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 0x0000000080022e87 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e87 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e87 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e88 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e88 +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 0x0000000080002b25 +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 0x0000000080002b26 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002b26 +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 0x0000000080002b26 +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 0x0000000080002b27 +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 0x0000000080002888 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec08 mem 0x0000000080002888 +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 0x0000000080022cf0 +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 0x0000000080022ce8 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022cf0 +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 0x0000000080022b54 +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 0x0000000080022b50 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 0x0000000080022b50 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022b4c +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 0x0000000080022b50 +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 0x0000000080022cb8 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022b4c +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 0x0000000080022e88 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e88 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e88 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e89 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e89 +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 0x0000000080002b27 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022cb8 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002b28 +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 0x0000000080022e89 mem 0x0000000080022cb8 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e89 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e89 mem 0x0000000080022cb8 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e8a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022cb8 0x0000000080022e8a +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 0x0000000080002b28 +core 0: 0x000000008000106c (0xff4516e3) bne 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 0x0000000080022ca8 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022e7f mem 0x0000000080022ca0 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022e7f mem 0x0000000080022c98 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080003018 mem 0x0000000080022c90 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003110 mem 0x0000000080022c88 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022d40 mem 0x0000000080022c80 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022c78 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022c70 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c58 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c50 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022cb0 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e8a mem 0x0000000080022cb8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e8a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e8a mem 0x0000000080022cb8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022cd8 +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 0x0000000080003108 mem 0x0000000080022cd0 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022d10 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080003110 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080003020 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022e8a +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001d00 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d00 (0x009a0663) +core 0: 0x0000000080001d04 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d04 (0x000a0513) x10 0x0000000080022d40 +core 0: 0x0000000080001d08 (0xc0dff0ef) jal pc - 0x3f4 +core 0: 3 0x0000000080001d08 (0xc0dff0ef) x1 0x0000000080001d0c core 0: >>>> printstr core 0: 0x0000000080001914 (0x00054783) lbu a5, 0(a0) -core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022cc0 +core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022d40 core 0: 0x0000000080001918 (0xf9010113) addi sp, sp, -112 -core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022c20 +core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022ca0 core 0: 0x000000008000191c (0x03f10693) addi a3, sp, 63 -core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022c5f +core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022cdf core 0: 0x0000000080001920 (0xfc06f693) andi a3, a3, -64 -core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022c40 +core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022cc0 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: 3 0x0000000080001928 (0x00050793) x15 0x0000000080022d40 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e 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: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c 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: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e0b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0b +core 0: 0x0000000080001934 (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 0x0000000080022e0c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0c +core 0: 0x0000000080001934 (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 0x0000000080022e0d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0d +core 0: 0x0000000080001934 (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 0x0000000080022e0e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0e +core 0: 0x0000000080001934 (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 0x0000000080022e0f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0f +core 0: 0x0000000080001934 (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 0x0000000080022e10 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e10 +core 0: 0x0000000080001934 (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 0x0000000080022e11 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e11 +core 0: 0x0000000080001934 (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 0x0000000080022e12 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e12 +core 0: 0x0000000080001934 (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 0x0000000080022e13 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e13 +core 0: 0x0000000080001934 (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 0x0000000080022e14 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e14 +core 0: 0x0000000080001934 (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 0x0000000080022e15 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e15 +core 0: 0x0000000080001934 (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 0x0000000080022e16 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e16 +core 0: 0x0000000080001934 (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 0x0000000080022e17 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e17 +core 0: 0x0000000080001934 (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 0x0000000080022e18 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e18 +core 0: 0x0000000080001934 (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 0x0000000080022e19 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e19 +core 0: 0x0000000080001934 (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 0x0000000080022e1a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1a +core 0: 0x0000000080001934 (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 0x0000000080022e1b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1b +core 0: 0x0000000080001934 (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 0x0000000080022e1c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1c +core 0: 0x0000000080001934 (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 0x0000000080022e1d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1d +core 0: 0x0000000080001934 (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 0x0000000080022e1e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1e +core 0: 0x0000000080001934 (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 0x0000000080022e1f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e1f +core 0: 0x0000000080001934 (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 0x0000000080022e20 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e20 +core 0: 0x0000000080001934 (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 0x0000000080022e21 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e21 +core 0: 0x0000000080001934 (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 0x0000000080022e22 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e22 +core 0: 0x0000000080001934 (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 0x0000000080022e23 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e23 +core 0: 0x0000000080001934 (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 0x0000000080022e24 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e24 +core 0: 0x0000000080001934 (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 0x0000000080022e25 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e25 +core 0: 0x0000000080001934 (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 0x0000000080022e26 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e26 +core 0: 0x0000000080001934 (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 0x0000000080022e27 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e27 +core 0: 0x0000000080001934 (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 0x0000000080022e28 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e28 +core 0: 0x0000000080001934 (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 0x0000000080022e29 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e29 +core 0: 0x0000000080001934 (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 0x0000000080022e2a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2a +core 0: 0x0000000080001934 (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 0x0000000080022e2b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2b +core 0: 0x0000000080001934 (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 0x0000000080022e2c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2c +core 0: 0x0000000080001934 (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 0x0000000080022e2d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2d +core 0: 0x0000000080001934 (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 0x0000000080022e2e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2e +core 0: 0x0000000080001934 (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 0x0000000080022e2f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e2f +core 0: 0x0000000080001934 (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 0x0000000080022e30 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e30 +core 0: 0x0000000080001934 (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 0x0000000080022e31 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e31 +core 0: 0x0000000080001934 (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 0x0000000080022e32 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e32 +core 0: 0x0000000080001934 (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 0x0000000080022e33 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e33 +core 0: 0x0000000080001934 (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 0x0000000080022e34 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e34 +core 0: 0x0000000080001934 (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 0x0000000080022e35 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e35 +core 0: 0x0000000080001934 (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 0x0000000080022e36 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e36 +core 0: 0x0000000080001934 (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 0x0000000080022e37 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e37 +core 0: 0x0000000080001934 (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 0x0000000080022e38 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e38 +core 0: 0x0000000080001934 (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 0x0000000080022e39 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e39 +core 0: 0x0000000080001934 (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 0x0000000080022e3a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3a +core 0: 0x0000000080001934 (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 0x0000000080022e3b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3b +core 0: 0x0000000080001934 (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 0x0000000080022e3c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3c +core 0: 0x0000000080001934 (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 0x0000000080022e3d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3d +core 0: 0x0000000080001934 (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 0x0000000080022e3e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3e +core 0: 0x0000000080001934 (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 0x0000000080022e3f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e3f +core 0: 0x0000000080001934 (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 0x0000000080022e40 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e40 +core 0: 0x0000000080001934 (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 0x0000000080022e41 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e41 +core 0: 0x0000000080001934 (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 0x0000000080022e42 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e42 +core 0: 0x0000000080001934 (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 0x0000000080022e43 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e43 +core 0: 0x0000000080001934 (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 0x0000000080022e44 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e44 +core 0: 0x0000000080001934 (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 0x0000000080022e45 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e45 +core 0: 0x0000000080001934 (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 0x0000000080022e46 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e46 +core 0: 0x0000000080001934 (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 0x0000000080022e47 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e47 +core 0: 0x0000000080001934 (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 0x0000000080022e48 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e48 +core 0: 0x0000000080001934 (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 0x0000000080022e49 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e49 +core 0: 0x0000000080001934 (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 0x0000000080022e4a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4a +core 0: 0x0000000080001934 (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 0x0000000080022e4b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4b +core 0: 0x0000000080001934 (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 0x0000000080022e4c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4c +core 0: 0x0000000080001934 (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 0x0000000080022e4d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4d +core 0: 0x0000000080001934 (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 0x0000000080022e4e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4e +core 0: 0x0000000080001934 (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 0x0000000080022e4f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e4f +core 0: 0x0000000080001934 (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 0x0000000080022e50 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e50 +core 0: 0x0000000080001934 (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 0x0000000080022e51 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e51 +core 0: 0x0000000080001934 (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 0x0000000080022e52 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e52 +core 0: 0x0000000080001934 (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 0x0000000080022e53 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e53 +core 0: 0x0000000080001934 (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 0x0000000080022e54 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e54 +core 0: 0x0000000080001934 (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 0x0000000080022e55 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e55 +core 0: 0x0000000080001934 (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 0x0000000080022e56 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e56 +core 0: 0x0000000080001934 (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 0x0000000080022e57 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e57 +core 0: 0x0000000080001934 (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 0x0000000080022e58 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e58 +core 0: 0x0000000080001934 (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 0x0000000080022e59 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e59 +core 0: 0x0000000080001934 (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 0x0000000080022e5a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5a +core 0: 0x0000000080001934 (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 0x0000000080022e5b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5b +core 0: 0x0000000080001934 (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 0x0000000080022e5c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5c +core 0: 0x0000000080001934 (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 0x0000000080022e5d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5d +core 0: 0x0000000080001934 (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 0x0000000080022e5e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5e +core 0: 0x0000000080001934 (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 0x0000000080022e5f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e5f +core 0: 0x0000000080001934 (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 0x0000000080022e60 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e60 +core 0: 0x0000000080001934 (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 0x0000000080022e61 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e61 +core 0: 0x0000000080001934 (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 0x0000000080022e62 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e62 +core 0: 0x0000000080001934 (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 0x0000000080022e63 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e63 +core 0: 0x0000000080001934 (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 0x0000000080022e64 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e64 +core 0: 0x0000000080001934 (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 0x0000000080022e65 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e65 +core 0: 0x0000000080001934 (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 0x0000000080022e66 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e66 +core 0: 0x0000000080001934 (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 0x0000000080022e67 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e67 +core 0: 0x0000000080001934 (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 0x0000000080022e68 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e68 +core 0: 0x0000000080001934 (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 0x0000000080022e69 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e69 +core 0: 0x0000000080001934 (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 0x0000000080022e6a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6a +core 0: 0x0000000080001934 (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 0x0000000080022e6b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6b +core 0: 0x0000000080001934 (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 0x0000000080022e6c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6c +core 0: 0x0000000080001934 (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 0x0000000080022e6d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6d +core 0: 0x0000000080001934 (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 0x0000000080022e6e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6e +core 0: 0x0000000080001934 (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 0x0000000080022e6f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e6f +core 0: 0x0000000080001934 (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 0x0000000080022e70 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e70 +core 0: 0x0000000080001934 (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 0x0000000080022e71 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e71 +core 0: 0x0000000080001934 (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 0x0000000080022e72 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e72 +core 0: 0x0000000080001934 (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 0x0000000080022e73 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e73 +core 0: 0x0000000080001934 (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 0x0000000080022e74 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e74 +core 0: 0x0000000080001934 (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 0x0000000080022e75 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e75 +core 0: 0x0000000080001934 (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 0x0000000080022e76 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e76 +core 0: 0x0000000080001934 (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 0x0000000080022e77 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e77 +core 0: 0x0000000080001934 (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 0x0000000080022e78 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e78 +core 0: 0x0000000080001934 (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 0x0000000080022e79 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e79 +core 0: 0x0000000080001934 (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 0x0000000080022e7a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7a +core 0: 0x0000000080001934 (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 0x0000000080022e7b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7b +core 0: 0x0000000080001934 (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 0x0000000080022e7c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7c +core 0: 0x0000000080001934 (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 0x0000000080022e7d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7d +core 0: 0x0000000080001934 (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 0x0000000080022e7e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7e +core 0: 0x0000000080001934 (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 0x0000000080022e7f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e7f +core 0: 0x0000000080001934 (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 0x0000000080022e80 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e80 +core 0: 0x0000000080001934 (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 0x0000000080022e81 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e81 +core 0: 0x0000000080001934 (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 0x0000000080022e82 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e82 +core 0: 0x0000000080001934 (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 0x0000000080022e83 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e83 +core 0: 0x0000000080001934 (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 0x0000000080022e84 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e84 +core 0: 0x0000000080001934 (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 0x0000000080022e85 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e85 +core 0: 0x0000000080001934 (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 0x0000000080022e86 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e86 +core 0: 0x0000000080001934 (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 0x0000000080022e87 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e87 +core 0: 0x0000000080001934 (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 0x0000000080022e88 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e88 +core 0: 0x0000000080001934 (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 0x0000000080022e89 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e89 +core 0: 0x0000000080001934 (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 0x0000000080022e8a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e8a +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: 3 0x0000000080001940 (0x00e6b023) mem 0x0000000080022cc0 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: 3 0x0000000080001948 (0x00e6b423) mem 0x0000000080022cc8 0x0000000000000001 core 0: 0x000000008000194c (0x00a6b823) sd a0, 16(a3) -core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022c50 0x0000000080022cc0 +core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022cd0 0x0000000080022d40 core 0: 0x0000000080001950 (0x00f6bc23) sd a5, 24(a3) -core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022c58 0x000000000000014a +core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022cd8 0x000000000000014a core 0: 0x0000000080001954 (0x0330000f) fence rw,rw core 0: 3 0x0000000080001954 (0x0330000f) core 0: 0x0000000080001958 (0xbfffe717) auipc a4, 0xbfffe @@ -41931,7 +28430,7 @@ 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: 3 0x0000000080001964 (0x6ad7b023) mem 0x0000000040000000 0x0000000080022cc0 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 @@ -41943,15 +28442,15 @@ core 0: 3 0x0000000080001974 (0x6c07b823) mem 0x0000000040000040 0x000000000 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: 3 0x000000008000197c (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022cc0 core 0: 0x0000000080001980 (0x07010113) addi sp, sp, 112 -core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022c90 +core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022d10 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: 0x0000000080001d0c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d0c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d10 (0xbc1ff0ef) jal pc - 0x440 +core 0: 3 0x0000000080001d10 (0xbc1ff0ef) x1 0x0000000080001d14 core 0: >>>> tohost_exit core 0: 0x00000000800018d0 (0x00151793) slli a5, a0, 1 core 0: 3 0x00000000800018d0 (0x00151793) x15 0x0000000000000000 diff --git a/traces/without_zfa.txt b/traces/without_zfa.txt index 0bd6e35..f8ff4ef 100644 --- a/traces/without_zfa.txt +++ b/traces/without_zfa.txt @@ -163,14 +163,14 @@ 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: 0x0000000080000144 (0x07818193) addi gp, gp, 120 +core 0: 3 0x0000000080000144 (0x07818193) x3 0x00000000800031b8 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: 0x000000008000014c (0x07720213) addi tp, tp, 119 +core 0: 3 0x000000008000014c (0x07720213) x4 0x00000000800031bf core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 -core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002bc0 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080003180 core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 core 0: 0x0000000080000158 (0x00100593) li a1, 1 @@ -182,22942 +182,25869 @@ 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: 3 0x0000000080000168 (0x00410133) x2 0x0000000080023180 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: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080003180 +core 0: 0x0000000080000174 (0x2910106f) j pc + 0x1a90 +core 0: 3 0x0000000080000174 (0x2910106f) 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: 0x0000000080001c04 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001c04 (0xbd010113) x2 0x0000000080022d50 +core 0: 0x0000000080001c08 (0xfb018793) addi a5, gp, -80 +core 0: 3 0x0000000080001c08 (0xfb018793) x15 0x0000000080003168 +core 0: 0x0000000080001c0c (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001c0c (0x42813023) mem 0x0000000080023170 0x0000000000000000 +core 0: 0x0000000080001c10 (0xfb018413) addi s0, gp, -80 +core 0: 3 0x0000000080001c10 (0xfb018413) x8 0x0000000080003168 +core 0: 0x0000000080001c14 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001c14 (0x40913c23) mem 0x0000000080023168 0x0000000000000000 +core 0: 0x0000000080001c18 (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001c18 (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001c1c (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c1c (0x41213823) mem 0x0000000080023160 0x0000000000000000 +core 0: 0x0000000080001c20 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c20 (0x41313423) mem 0x0000000080023158 0x0000000000000000 +core 0: 0x0000000080001c24 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001c24 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001c28 (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001c28 (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001c2c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c2c (0x00020513) x10 0x0000000080003180 +core 0: 0x0000000080001c30 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c30 (0x00078593) x11 0x0000000080003168 +core 0: 0x0000000080001c34 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c34 (0x00048613) x12 0x0000000000000000 +core 0: 0x0000000080001c38 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c38 (0x42113423) mem 0x0000000080023178 0x0000000000000000 +core 0: 0x0000000080001c3c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c3c (0x41413023) mem 0x0000000080023150 0x0000000000000000 +core 0: 0x0000000080001c40 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c40 (0x3f513c23) mem 0x0000000080023148 0x0000000000000000 +core 0: 0x0000000080001c44 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c44 (0x00020a93) x21 0x0000000080003180 +core 0: 0x0000000080001c48 (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c48 (0xe91ff0ef) x1 0x0000000080001c4c +core 0: >>>> memcpy +core 0: 0x0000000080001ad8 (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001ad8 (0x00c5e7b3) x15 0x0000000080003168 +core 0: 0x0000000080001adc (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001adc (0x00f567b3) x15 0x00000000800031e8 +core 0: 0x0000000080001ae0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ae0 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ae4 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ae4 (0x00058393) x7 0x0000000080003168 +core 0: 0x0000000080001ae8 (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001ae8 (0x00c506b3) x13 0x0000000080003180 +core 0: 0x0000000080001aec (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001aec (0x02078463) +core 0: 0x0000000080001b14 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001b14 (0x04050713) x14 0x00000000800031c0 +core 0: 0x0000000080001b18 (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001b18 (0x08d77463) +core 0: 0x0000000080001ba0 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001ba0 (0x00050793) x15 0x0000000080003180 +core 0: 0x0000000080001ba4 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001ba4 (0xfddff06f) +core 0: 0x0000000080001b80 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b80 (0xf8d7f8e3) +core 0: 0x0000000080001b10 (0x00008067) ret +core 0: 3 0x0000000080001b10 (0x00008067) +core 0: 0x0000000080001c4c (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c4c (0x00001617) x12 0x0000000080002c4c +core 0: 0x0000000080001c50 (0x57860613) addi a2, a2, 1400 +core 0: 3 0x0000000080001c50 (0x57860613) x12 0x00000000800031c4 +core 0: 0x0000000080001c54 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c54 (0x40860633) x12 0x000000000000005c +core 0: 0x0000000080001c58 (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c58 (0x009a8533) x10 0x0000000080003180 +core 0: 0x0000000080001c5c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c5c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c60 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c60 (0xf49ff0ef) x1 0x0000000080001c64 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: 0x0000000080001ba8 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001ba8 (0x00c567b3) x15 0x00000000800031dc +core 0: 0x0000000080001bac (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001bac (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001bb0 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001bb0 (0x00c50633) x12 0x00000000800031dc +core 0: 0x0000000080001bb4 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001bb4 (0x00078e63) +core 0: 0x0000000080001bb8 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001bb8 (0x00050793) x15 0x0000000080003180 +core 0: 0x0000000080001bbc (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001bbc (0x04c57263) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003181 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003180 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003182 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003181 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003183 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003182 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003184 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003183 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003185 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003184 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003186 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003185 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003187 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003186 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003188 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003187 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003189 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003188 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318a +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003189 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318b +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318a 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318c +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318b 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318d +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318c 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318e +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318d 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000318f +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318e 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003190 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000318f 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003191 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003190 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003192 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003191 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003193 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003192 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003194 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003193 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003195 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003194 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003196 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003195 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003197 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003196 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003198 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003197 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x0000000080003199 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003198 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319a +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x0000000080003199 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319b +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319a 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319c +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319b 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319d +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319c 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319e +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319d 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x000000008000319f +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319e 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x000000008000319f 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031a9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031aa +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031a9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ab +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031aa 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ac +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ab 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ad +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ac 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ae +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ad 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031af +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ae 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031af 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031b9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ba +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031b9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031bb +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ba 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031bc +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031bb 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031bd +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031bc 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031be +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031bd 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031bf +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031be 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031bf 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031c9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ca +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031c9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031cb +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ca 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031cc +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031cb 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031cd +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031cc 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031ce +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031cd 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031cf +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031ce 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d0 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031cf 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d1 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d0 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d2 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d1 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d3 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d2 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d4 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d3 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d5 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d4 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d6 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d5 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d7 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d6 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d8 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d7 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031d9 +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d8 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031da +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031d9 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031db +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031da 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bc0 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001bc0 (0x00178793) x15 0x00000000800031dc +core 0: 0x0000000080001bc4 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001bc4 (0xfeb78fa3) mem 0x00000000800031db 0x00 +core 0: 0x0000000080001bc8 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001bc8 (0xfef61ce3) +core 0: 0x0000000080001bcc (0x00008067) ret +core 0: 3 0x0000000080001bcc (0x00008067) +core 0: 0x0000000080001c64 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c64 (0x03f10a13) x20 0x0000000080022d8f +core 0: 0x0000000080001c68 (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c68 (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c6c (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c6c (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c70 (0xd45ff0ef) jal pc - 0x2bc +core 0: 3 0x0000000080001c70 (0xd45ff0ef) x1 0x0000000080001c74 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: 0x00000000800019b4 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x00000000800019b4 (0x00051463) +core 0: 0x00000000800019b8 (0x00008067) ret +core 0: 3 0x00000000800019b8 (0x00008067) +core 0: 0x0000000080001c74 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c74 (0xfc0a7a13) x20 0x0000000080022d80 +core 0: 0x0000000080001c78 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c78 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c7c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c7c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c80 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c80 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c84 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c84 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c88 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c88 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c8c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c8c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c90 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c90 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c94 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c94 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c98 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c98 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c9c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c9c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001ca0 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001ca0 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001ca4 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001ca4 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001ca8 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001ca8 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001cac (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001cac (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001cb0 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001cb0 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001cb4 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001cb4 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001cb8 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001cb8 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001cbc (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001cbc (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001cc0 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001cc0 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cc4 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cc4 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cc8 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cc8 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001ccc (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001ccc (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cd0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cd0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cd4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cd4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cd8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cd8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cdc (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cdc (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001ce0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001ce0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ce4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ce4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001ce8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001ce8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cec (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cec (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cf0 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cf0 (0x16c000ef) x1 0x0000000080001cf4 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: 0x0000000080001e5c (0xdd010113) addi sp, sp, -560 +core 0: 3 0x0000000080001e5c (0xdd010113) x2 0x0000000080022b20 +core 0: 0x0000000080001e60 (0x22113423) sd ra, 552(sp) +core 0: 3 0x0000000080001e60 (0x22113423) mem 0x0000000080022d48 0x0000000080001cf4 +core 0: 0x0000000080001e64 (0x22813023) sd s0, 544(sp) +core 0: 3 0x0000000080001e64 (0x22813023) mem 0x0000000080022d40 0x0000000080003168 +core 0: 0x0000000080001e68 (0x20913c23) sd s1, 536(sp) +core 0: 3 0x0000000080001e68 (0x20913c23) mem 0x0000000080022d38 0x0000000000000000 +core 0: 0x0000000080001e6c (0x20813427) fsd fs0, 520(sp) +core 0: 3 0x0000000080001e6c (0x20813427) mem 0x0000000080022d28 0xffffffff00000000 +core 0: 0x0000000080001e70 (0x20913027) fsd fs1, 512(sp) +core 0: 3 0x0000000080001e70 (0x20913027) mem 0x0000000080022d20 0xffffffff00000000 +core 0: 0x0000000080001e74 (0x1f213c27) fsd fs2, 504(sp) +core 0: 3 0x0000000080001e74 (0x1f213c27) mem 0x0000000080022d18 0xffffffff00000000 +core 0: 0x0000000080001e78 (0x1f313827) fsd fs3, 496(sp) +core 0: 3 0x0000000080001e78 (0x1f313827) mem 0x0000000080022d10 0xffffffff00000000 +core 0: 0x0000000080001e7c (0x1f413427) fsd fs4, 488(sp) +core 0: 3 0x0000000080001e7c (0x1f413427) mem 0x0000000080022d08 0xffffffff00000000 +core 0: 0x0000000080001e80 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e80 (0xc00027f3) x15 0x0000000000000540 +core 0: 0x0000000080001e84 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001e84 (0x00001597) x11 0x0000000080002e84 +core 0: 0x0000000080001e88 (0xc4c58593) addi a1, a1, -948 +core 0: 3 0x0000000080001e88 (0xc4c58593) x11 0x0000000080002ad0 +core 0: 0x0000000080001e8c (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001e8c (0x00001797) x15 0x0000000080002e8c +core 0: 0x0000000080001e90 (0xb347b687) fld fa3, -1228(a5) +core 0: 3 0x0000000080001e90 (0xb347b687) f13 0x4330000000000000 mem 0x00000000800029c0 +core 0: 0x0000000080001e94 (0x0005a607) flw fa2, 0(a1) +core 0: 3 0x0000000080001e94 (0x0005a607) f12 0xffffffff40500000 mem 0x0000000080002ad0 +core 0: 0x0000000080001e98 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e98 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001e9c (0x00c12227) fsw fa2, 4(sp) +core 0: 3 0x0000000080001e9c (0x00c12227) mem 0x0000000080022b24 0x40500000 +core 0: 0x0000000080001ea0 (0x00412787) flw fa5, 4(sp) +core 0: 3 0x0000000080001ea0 (0x00412787) f15 0xffffffff40500000 mem 0x0000000080022b24 +core 0: 0x0000000080001ea4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea4 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ea8 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001ea8 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eac (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eac (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb0 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb0 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001eb4 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001eb8 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001eb8 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ebc (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ebc (0x00070463) +core 0: 0x0000000080001ec0 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec0 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ec4 (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ec8 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001ec8 (0x00f12427) mem 0x0000000080022b28 0x40400000 +core 0: 0x0000000080001ecc (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ecc (0xfc0798e3) +core 0: 0x0000000080001ed0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed0 (0xc00027f3) x15 0x000000000000075e +core 0: 0x0000000080001ed4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed4 (0xc00027f3) x15 0x0000000000000767 +core 0: 0x0000000080001ed8 (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001ed8 (0x00001617) x12 0x0000000080002ed8 +core 0: 0x0000000080001edc (0xaf060613) addi a2, a2, -1296 +core 0: 3 0x0000000080001edc (0xaf060613) x12 0x00000000800029c8 +core 0: 0x0000000080001ee0 (0x00063607) fld fa2, 0(a2) +core 0: 3 0x0000000080001ee0 (0x00063607) f12 0x400a000000000000 mem 0x00000000800029c8 +core 0: 0x0000000080001ee4 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ee4 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001ee8 (0x02c13027) fsd fa2, 32(sp) +core 0: 3 0x0000000080001ee8 (0x02c13027) mem 0x0000000080022b40 0x400a000000000000 +core 0: 0x0000000080001eec (0x02013787) fld fa5, 32(sp) +core 0: 3 0x0000000080001eec (0x02013787) f15 0x400a000000000000 mem 0x0000000080022b40 +core 0: 0x0000000080001ef0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef0 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001ef8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001ef8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001efc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001efc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f00 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f00 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f04 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f04 (0x00070463) +core 0: 0x0000000080001f08 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f08 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f0c (0x02f13427) fsd fa5, 40(sp) +core 0: 3 0x0000000080001f0c (0x02f13427) mem 0x0000000080022b48 0x4008000000000000 +core 0: 0x0000000080001f10 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f10 (0xfc079ce3) +core 0: 0x0000000080001f14 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f14 (0xc00027f3) x15 0x00000000000008dd +core 0: 0x0000000080001f18 (0x00001697) auipc a3, 0x1 +core 0: 3 0x0000000080001f18 (0x00001697) x13 0x0000000080002f18 +core 0: 0x0000000080001f1c (0xba468693) addi a3, a3, -1116 +core 0: 3 0x0000000080001f1c (0xba468693) x13 0x0000000080002abc +core 0: 0x0000000080001f20 (0x0005a707) flw fa4, 0(a1) +core 0: 3 0x0000000080001f20 (0x0005a707) f14 0xffffffff40500000 mem 0x0000000080002ad0 +core 0: 0x0000000080001f24 (0x0006a787) flw fa5, 0(a3) +core 0: 3 0x0000000080001f24 (0x0006a787) f15 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x0000000080001f28 (0x00e12627) fsw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00e12627) mem 0x0000000080022b2c 0x40500000 +core 0: 0x0000000080001f2c (0x00f12827) fsw fa5, 16(sp) +core 0: 3 0x0000000080001f2c (0x00f12827) mem 0x0000000080022b30 0x40400000 +core 0: 0x0000000080001f30 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f30 (0xc00027f3) x15 0x0000000000000914 +core 0: 0x0000000080001f34 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f34 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f38 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001f38 (0x00c12787) f15 0xffffffff40500000 mem 0x0000000080022b2c +core 0: 0x0000000080001f3c (0x01012707) flw fa4, 16(sp) +core 0: 3 0x0000000080001f3c (0x01012707) f14 0xffffffff40400000 mem 0x0000000080022b30 +core 0: 0x0000000080001f40 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f40 (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f44 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f44 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f48 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f48 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f4c (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f4c (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f50 (0x00039663) +core 0: 0x0000000080001f54 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f54 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f58 (0x0080006f) +core 0: 0x0000000080001f60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f60 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f64 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f64 (0xfc079ae3) +core 0: 0x0000000080001f68 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f68 (0xc00027f3) x15 0x00000000000009ec +core 0: 0x0000000080001f6c (0x00001717) auipc a4, 0x1 +core 0: 3 0x0000000080001f6c (0x00001717) x14 0x0000000080002f6c +core 0: 0x0000000080001f70 (0xa6470713) addi a4, a4, -1436 +core 0: 3 0x0000000080001f70 (0xa6470713) x14 0x00000000800029d0 +core 0: 0x0000000080001f74 (0x00063707) fld fa4, 0(a2) +core 0: 3 0x0000000080001f74 (0x00063707) f14 0x400a000000000000 mem 0x00000000800029c8 +core 0: 0x0000000080001f78 (0x00073787) fld fa5, 0(a4) +core 0: 3 0x0000000080001f78 (0x00073787) f15 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x0000000080001f7c (0x02e13827) fsd fa4, 48(sp) +core 0: 3 0x0000000080001f7c (0x02e13827) mem 0x0000000080022b50 0x400a000000000000 +core 0: 0x0000000080001f80 (0x02f13c27) fsd fa5, 56(sp) +core 0: 3 0x0000000080001f80 (0x02f13c27) mem 0x0000000080022b58 0x4008000000000000 +core 0: 0x0000000080001f84 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f84 (0xc00027f3) x15 0x0000000000000a13 +core 0: 0x0000000080001f88 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f88 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001f8c (0x03013787) fld fa5, 48(sp) +core 0: 3 0x0000000080001f8c (0x03013787) f15 0x400a000000000000 mem 0x0000000080022b50 +core 0: 0x0000000080001f90 (0x03813707) fld fa4, 56(sp) +core 0: 3 0x0000000080001f90 (0x03813707) f14 0x4008000000000000 mem 0x0000000080022b58 +core 0: 0x0000000080001f94 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f94 (0xe20792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f98 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f98 (0xe2071353) x6 0x0000000000000040 +core 0: 0x0000000080001f9c (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f9c (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001fa0 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001fa0 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001fa4 (0x00039663) +core 0: 0x0000000080001fa8 (0xa2e78653) fle.d a2, fa5, fa4 +core 0: 3 0x0000000080001fa8 (0xa2e78653) x12 0x0000000000000000 +core 0: 0x0000000080001fac (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001fac (0x0080006f) +core 0: 0x0000000080001fb4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fb4 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001fb8 (0xfc079ae3) +core 0: 0x0000000080001fbc (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001fbc (0xc00027f3) x15 0x0000000000000ae7 +core 0: 0x0000000080001fc0 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001fc0 (0x00001797) x15 0x0000000080002fc0 +core 0: 0x0000000080001fc4 (0xa1c7a787) flw fa5, -1508(a5) +core 0: 3 0x0000000080001fc4 (0xa1c7a787) f15 0xffffffff80000000 mem 0x00000000800029dc +core 0: 0x0000000080001fc8 (0x00012a23) sw zero, 20(sp) +core 0: 3 0x0000000080001fc8 (0x00012a23) mem 0x0000000080022b34 0x00000000 +core 0: 0x0000000080001fcc (0x00f12c27) fsw fa5, 24(sp) +core 0: 3 0x0000000080001fcc (0x00f12c27) mem 0x0000000080022b38 0x80000000 +core 0: 0x0000000080001fd0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001fd0 (0xc00027f3) x15 0x0000000000000af5 +core 0: 0x0000000080001fd4 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001fd4 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080001fd8 (0x01412787) flw fa5, 20(sp) +core 0: 3 0x0000000080001fd8 (0x01412787) f15 0xffffffff00000000 mem 0x0000000080022b34 +core 0: 0x0000000080001fdc (0x01812707) flw fa4, 24(sp) +core 0: 3 0x0000000080001fdc (0x01812707) f14 0xffffffff80000000 mem 0x0000000080022b38 +core 0: 0x0000000080001fe0 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fe0 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fe4 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fe4 (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fe8 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fe8 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fec (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fec (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001ff0 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001ff0 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001ff4 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001ff4 (0x000e1863) +core 0: 0x0000000080001ff8 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001ff8 (0x000e9c63) +core 0: 0x0000000080001ffc (0x28e787d3) fmin.s fa5, fa5, fa4 +core 0: 3 0x0000000080001ffc (0x28e787d3) f15 0xffffffff80000000 +core 0: 0x0000000080002000 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080002000 (0x01c0006f) +core 0: 0x000000008000201c (0x00f12e27) fsw fa5, 28(sp) +core 0: 3 0x000000008000201c (0x00f12e27) mem 0x0000000080022b3c 0x80000000 +core 0: 0x0000000080002020 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002020 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002024 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002024 (0xfa079ae3) +core 0: 0x0000000080002028 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002028 (0xc00027f3) x15 0x0000000000000c0d +core 0: 0x000000008000202c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000202c (0x00001797) x15 0x000000008000302c +core 0: 0x0000000080002030 (0x9ac7b787) fld fa5, -1620(a5) +core 0: 3 0x0000000080002030 (0x9ac7b787) f15 0x8000000000000000 mem 0x00000000800029d8 +core 0: 0x0000000080002034 (0x04013023) sd zero, 64(sp) +core 0: 3 0x0000000080002034 (0x04013023) mem 0x0000000080022b60 0x0000000000000000 +core 0: 0x0000000080002038 (0x04f13427) fsd fa5, 72(sp) +core 0: 3 0x0000000080002038 (0x04f13427) mem 0x0000000080022b68 0x8000000000000000 +core 0: 0x000000008000203c (0xc00027f3) csrr a5, cycle +core 0: 3 0x000000008000203c (0xc00027f3) x15 0x0000000000000c28 +core 0: 0x0000000080002040 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002040 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002044 (0x04013787) fld fa5, 64(sp) +core 0: 3 0x0000000080002044 (0x04013787) f15 0x0000000000000000 mem 0x0000000080022b60 +core 0: 0x0000000080002048 (0x04813707) fld fa4, 72(sp) +core 0: 3 0x0000000080002048 (0x04813707) f14 0x8000000000000000 mem 0x0000000080022b68 +core 0: 0x000000008000204c (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x000000008000204c (0xe20792d3) x5 0x0000000000000010 +core 0: 0x0000000080002050 (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080002050 (0xe2071353) x6 0x0000000000000008 +core 0: 0x0000000080002054 (0x30000393) li t2, 768 +core 0: 3 0x0000000080002054 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080002058 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080002058 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x000000008000205c (0x00737eb3) and t4, t1, t2 +core 0: 3 0x000000008000205c (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080002060 (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080002060 (0x000e1863) +core 0: 0x0000000080002064 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080002064 (0x000e9c63) +core 0: 0x0000000080002068 (0x2ae787d3) fmin.d fa5, fa5, fa4 +core 0: 3 0x0000000080002068 (0x2ae787d3) f15 0x8000000000000000 +core 0: 0x000000008000206c (0x01c0006f) j pc + 0x1c +core 0: 3 0x000000008000206c (0x01c0006f) +core 0: 0x0000000080002088 (0x04f13827) fsd fa5, 80(sp) +core 0: 3 0x0000000080002088 (0x04f13827) mem 0x0000000080022b70 0x8000000000000000 +core 0: 0x000000008000208c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000208c (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002090 (0xfa079ae3) bnez a5, pc - 76 +core 0: 3 0x0000000080002090 (0xfa079ae3) +core 0: 0x0000000080002094 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002094 (0xc00027f3) x15 0x0000000000000d57 +core 0: 0x0000000080002098 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002098 (0xc00027f3) x15 0x0000000000000d60 +core 0: 0x000000008000209c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000209c (0x00001797) x15 0x000000008000309c +core 0: 0x00000000800020a0 (0xa387a787) flw fa5, -1480(a5) +core 0: 3 0x00000000800020a0 (0xa387a787) f15 0xffffffffbf800000 mem 0x0000000080002ad4 +core 0: 0x00000000800020a4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020a4 (0x00001797) x15 0x00000000800030a4 +core 0: 0x00000000800020a8 (0xa347aa07) flw fs4, -1484(a5) +core 0: 3 0x00000000800020a8 (0xa347aa07) f20 0xffffffff37800000 mem 0x0000000080002ad8 +core 0: 0x00000000800020ac (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020ac (0x00001797) x15 0x00000000800030ac +core 0: 0x00000000800020b0 (0xa307a987) flw fs3, -1488(a5) +core 0: 3 0x00000000800020b0 (0xa307a987) f19 0xffffffff38000000 mem 0x0000000080002adc +core 0: 0x00000000800020b4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020b4 (0x00001797) x15 0x00000000800030b4 +core 0: 0x00000000800020b8 (0xa2c7a907) flw fs2, -1492(a5) +core 0: 3 0x00000000800020b8 (0xa2c7a907) f18 0xffffffff38800000 mem 0x0000000080002ae0 +core 0: 0x00000000800020bc (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020bc (0x00001797) x15 0x00000000800030bc +core 0: 0x00000000800020c0 (0xa287a487) flw fs1, -1496(a5) +core 0: 3 0x00000000800020c0 (0xa287a487) f9 0xffffffff39000000 mem 0x0000000080002ae4 +core 0: 0x00000000800020c4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020c4 (0x00001797) x15 0x00000000800030c4 +core 0: 0x00000000800020c8 (0xa247a407) flw fs0, -1500(a5) +core 0: 3 0x00000000800020c8 (0xa247a407) f8 0xffffffff39800000 mem 0x0000000080002ae8 +core 0: 0x00000000800020cc (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020cc (0x00001797) x15 0x00000000800030cc +core 0: 0x00000000800020d0 (0xa207af87) flw ft11, -1504(a5) +core 0: 3 0x00000000800020d0 (0xa207af87) f31 0xffffffff3a000000 mem 0x0000000080002aec +core 0: 0x00000000800020d4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020d4 (0x00001797) x15 0x00000000800030d4 +core 0: 0x00000000800020d8 (0xa1c7af07) flw ft10, -1508(a5) +core 0: 3 0x00000000800020d8 (0xa1c7af07) f30 0xffffffff3a800000 mem 0x0000000080002af0 +core 0: 0x00000000800020dc (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020dc (0x00001797) x15 0x00000000800030dc +core 0: 0x00000000800020e0 (0xa187ae87) flw ft9, -1512(a5) +core 0: 3 0x00000000800020e0 (0xa187ae87) f29 0xffffffff3b000000 mem 0x0000000080002af4 +core 0: 0x00000000800020e4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020e4 (0x00001797) x15 0x00000000800030e4 +core 0: 0x00000000800020e8 (0xa147ae07) flw ft8, -1516(a5) +core 0: 3 0x00000000800020e8 (0xa147ae07) f28 0xffffffff3b800000 mem 0x0000000080002af8 +core 0: 0x00000000800020ec (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020ec (0x00001797) x15 0x00000000800030ec +core 0: 0x00000000800020f0 (0xa107a887) flw fa7, -1520(a5) +core 0: 3 0x00000000800020f0 (0xa107a887) f17 0xffffffff3c000000 mem 0x0000000080002afc +core 0: 0x00000000800020f4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020f4 (0x00001797) x15 0x00000000800030f4 +core 0: 0x00000000800020f8 (0xa0c7a807) flw fa6, -1524(a5) +core 0: 3 0x00000000800020f8 (0xa0c7a807) f16 0xffffffff3c800000 mem 0x0000000080002b00 +core 0: 0x00000000800020fc (0x00001797) auipc a5, 0x1 +core 0: 3 0x00000000800020fc (0x00001797) x15 0x00000000800030fc +core 0: 0x0000000080002100 (0xa087a387) flw ft7, -1528(a5) +core 0: 3 0x0000000080002100 (0xa087a387) f7 0xffffffff3d000000 mem 0x0000000080002b04 +core 0: 0x0000000080002104 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080002104 (0x00001797) x15 0x0000000080003104 +core 0: 0x0000000080002108 (0xa047a307) flw ft6, -1532(a5) +core 0: 3 0x0000000080002108 (0xa047a307) f6 0xffffffff3d800000 mem 0x0000000080002b08 +core 0: 0x000000008000210c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000210c (0x00001797) x15 0x000000008000310c +core 0: 0x0000000080002110 (0xa007a287) flw ft5, -1536(a5) +core 0: 3 0x0000000080002110 (0xa007a287) f5 0xffffffff3e000000 mem 0x0000000080002b0c +core 0: 0x0000000080002114 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080002114 (0x00001797) x15 0x0000000080003114 +core 0: 0x0000000080002118 (0x9fc7a207) flw ft4, -1540(a5) +core 0: 3 0x0000000080002118 (0x9fc7a207) f4 0xffffffff3e800000 mem 0x0000000080002b10 +core 0: 0x000000008000211c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000211c (0x00001797) x15 0x000000008000311c +core 0: 0x0000000080002120 (0x8d87a187) flw ft3, -1832(a5) +core 0: 3 0x0000000080002120 (0x8d87a187) f3 0xffffffff3f000000 mem 0x00000000800029f4 +core 0: 0x0000000080002124 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080002124 (0x00001797) x15 0x0000000080003124 +core 0: 0x0000000080002128 (0x8f07a107) flw ft2, -1808(a5) +core 0: 3 0x0000000080002128 (0x8f07a107) f2 0xffffffff3f400000 mem 0x0000000080002a14 +core 0: 0x000000008000212c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000212c (0x00001797) x15 0x000000008000312c +core 0: 0x0000000080002130 (0x9087a087) flw ft1, -1784(a5) +core 0: 3 0x0000000080002130 (0x9087a087) f1 0xffffffff3f800000 mem 0x0000000080002a34 +core 0: 0x0000000080002134 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080002134 (0x00001797) x15 0x0000000080003134 +core 0: 0x0000000080002138 (0x9107a007) flw ft0, -1776(a5) +core 0: 3 0x0000000080002138 (0x9107a007) f0 0xffffffff3fa00000 mem 0x0000000080002a44 +core 0: 0x000000008000213c (0x00001797) auipc a5, 0x1 +core 0: 3 0x000000008000213c (0x00001797) x15 0x000000008000313c +core 0: 0x0000000080002140 (0x9187a507) flw fa0, -1768(a5) +core 0: 3 0x0000000080002140 (0x9187a507) f10 0xffffffff3fc00000 mem 0x0000000080002a54 +core 0: 0x0000000080002144 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080002144 (0x00001797) x15 0x0000000080003144 +core 0: 0x0000000080002148 (0x9207a587) flw fa1, -1760(a5) +core 0: 3 0x0000000080002148 (0x9207a587) f11 0xffffffff3fe00000 mem 0x0000000080002a64 +core 0: 0x000000008000214c (0x00001e97) auipc t4, 0x1 +core 0: 3 0x000000008000214c (0x00001e97) x29 0x000000008000314c +core 0: 0x0000000080002150 (0x948e8e93) addi t4, t4, -1720 +core 0: 3 0x0000000080002150 (0x948e8e93) x29 0x0000000080002a94 +core 0: 0x0000000080002154 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002154 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002158 (0x00001e17) auipc t3, 0x1 +core 0: 3 0x0000000080002158 (0x00001e17) x28 0x0000000080003158 +core 0: 0x000000008000215c (0x954e0e13) addi t3, t3, -1708 +core 0: 3 0x000000008000215c (0x954e0e13) x28 0x0000000080002aac +core 0: 0x0000000080002160 (0x00001317) auipc t1, 0x1 +core 0: 3 0x0000000080002160 (0x00001317) x6 0x0000000080003160 +core 0: 0x0000000080002164 (0x9b430313) addi t1, t1, -1612 +core 0: 3 0x0000000080002164 (0x9b430313) x6 0x0000000080002b14 +core 0: 0x0000000080002168 (0x00001897) auipc a7, 0x1 +core 0: 3 0x0000000080002168 (0x00001897) x17 0x0000000080003168 +core 0: 0x000000008000216c (0x9b088893) addi a7, a7, -1616 +core 0: 3 0x000000008000216c (0x9b088893) x17 0x0000000080002b18 +core 0: 0x0000000080002170 (0x00001817) auipc a6, 0x1 +core 0: 3 0x0000000080002170 (0x00001817) x16 0x0000000080003170 +core 0: 0x0000000080002174 (0x9ac80813) addi a6, a6, -1620 +core 0: 3 0x0000000080002174 (0x9ac80813) x16 0x0000000080002b1c +core 0: 0x0000000080002178 (0x00001517) auipc a0, 0x1 +core 0: 3 0x0000000080002178 (0x00001517) x10 0x0000000080003178 +core 0: 0x000000008000217c (0x9a850513) addi a0, a0, -1624 +core 0: 3 0x000000008000217c (0x9a850513) x10 0x0000000080002b20 +core 0: 0x0000000080002180 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080002180 (0x00001597) x11 0x0000000080003180 +core 0: 0x0000000080002184 (0x9a458593) addi a1, a1, -1628 +core 0: 3 0x0000000080002184 (0x9a458593) x11 0x0000000080002b24 +core 0: 0x0000000080002188 (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080002188 (0x00001617) x12 0x0000000080003188 +core 0: 0x000000008000218c (0x9a060613) addi a2, a2, -1632 +core 0: 3 0x000000008000218c (0x9a060613) x12 0x0000000080002b28 +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x0000000080002190 (0x06f12027) fsw fa5, 96(sp) +core 0: 3 0x0000000080002190 (0x06f12027) mem 0x0000000080022b80 0xbf800000 +core 0: 0x0000000080002194 (0x06f12227) fsw fa5, 100(sp) +core 0: 3 0x0000000080002194 (0x06f12227) mem 0x0000000080022b84 0xbf800000 +core 0: 0x0000000080002198 (0x07412427) fsw fs4, 104(sp) +core 0: 3 0x0000000080002198 (0x07412427) mem 0x0000000080022b88 0x37800000 +core 0: 0x000000008000219c (0x07312627) fsw fs3, 108(sp) +core 0: 3 0x000000008000219c (0x07312627) mem 0x0000000080022b8c 0x38000000 +core 0: 0x00000000800021a0 (0x07212827) fsw fs2, 112(sp) +core 0: 3 0x00000000800021a0 (0x07212827) mem 0x0000000080022b90 0x38800000 +core 0: 0x00000000800021a4 (0x06912a27) fsw fs1, 116(sp) +core 0: 3 0x00000000800021a4 (0x06912a27) mem 0x0000000080022b94 0x39000000 +core 0: 0x00000000800021a8 (0x06812c27) fsw fs0, 120(sp) +core 0: 3 0x00000000800021a8 (0x06812c27) mem 0x0000000080022b98 0x39800000 +core 0: 0x00000000800021ac (0x07f12e27) fsw ft11, 124(sp) +core 0: 3 0x00000000800021ac (0x07f12e27) mem 0x0000000080022b9c 0x3a000000 +core 0: 0x00000000800021b0 (0x09e12027) fsw ft10, 128(sp) +core 0: 3 0x00000000800021b0 (0x09e12027) mem 0x0000000080022ba0 0x3a800000 +core 0: 0x00000000800021b4 (0x09d12227) fsw ft9, 132(sp) +core 0: 3 0x00000000800021b4 (0x09d12227) mem 0x0000000080022ba4 0x3b000000 +core 0: 0x00000000800021b8 (0x09c12427) fsw ft8, 136(sp) +core 0: 3 0x00000000800021b8 (0x09c12427) mem 0x0000000080022ba8 0x3b800000 +core 0: 0x00000000800021bc (0x09112627) fsw fa7, 140(sp) +core 0: 3 0x00000000800021bc (0x09112627) mem 0x0000000080022bac 0x3c000000 +core 0: 0x00000000800021c0 (0x09012827) fsw fa6, 144(sp) +core 0: 3 0x00000000800021c0 (0x09012827) mem 0x0000000080022bb0 0x3c800000 +core 0: 0x00000000800021c4 (0x08712a27) fsw ft7, 148(sp) +core 0: 3 0x00000000800021c4 (0x08712a27) mem 0x0000000080022bb4 0x3d000000 +core 0: 0x00000000800021c8 (0x08612c27) fsw ft6, 152(sp) +core 0: 3 0x00000000800021c8 (0x08612c27) mem 0x0000000080022bb8 0x3d800000 +core 0: 0x00000000800021cc (0x08512e27) fsw ft5, 156(sp) +core 0: 3 0x00000000800021cc (0x08512e27) mem 0x0000000080022bbc 0x3e000000 +core 0: 0x00000000800021d0 (0x0a412027) fsw ft4, 160(sp) +core 0: 3 0x00000000800021d0 (0x0a412027) mem 0x0000000080022bc0 0x3e800000 +core 0: 0x00000000800021d4 (0x0a312227) fsw ft3, 164(sp) +core 0: 3 0x00000000800021d4 (0x0a312227) mem 0x0000000080022bc4 0x3f000000 +core 0: 0x00000000800021d8 (0x0a212427) fsw ft2, 168(sp) +core 0: 3 0x00000000800021d8 (0x0a212427) mem 0x0000000080022bc8 0x3f400000 +core 0: 0x00000000800021dc (0x0a112627) fsw ft1, 172(sp) +core 0: 3 0x00000000800021dc (0x0a112627) mem 0x0000000080022bcc 0x3f800000 +core 0: 0x00000000800021e0 (0x0a012827) fsw ft0, 176(sp) +core 0: 3 0x00000000800021e0 (0x0a012827) mem 0x0000000080022bd0 0x3fa00000 +core 0: 0x00000000800021e4 (0x000ea687) flw fa3, 0(t4) +core 0: 3 0x00000000800021e4 (0x000ea687) f13 0xffffffff40000000 mem 0x0000000080002a94 +core 0: 0x00000000800021e8 (0x0aa12a27) fsw fa0, 180(sp) +core 0: 3 0x00000000800021e8 (0x0aa12a27) mem 0x0000000080022bd4 0x3fc00000 +core 0: 0x00000000800021ec (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021ec (0x000e2707) f14 0xffffffff40200000 mem 0x0000000080002aac +core 0: 0x00000000800021f0 (0x0ab12c27) fsw fa1, 184(sp) +core 0: 3 0x00000000800021f0 (0x0ab12c27) mem 0x0000000080022bd8 0x3fe00000 +core 0: 0x00000000800021f4 (0x0006a607) flw fa2, 0(a3) +core 0: 3 0x00000000800021f4 (0x0006a607) f12 0xffffffff40400000 mem 0x0000000080002abc +core 0: 0x00000000800021f8 (0x0ad12e27) fsw fa3, 188(sp) +core 0: 3 0x00000000800021f8 (0x0ad12e27) mem 0x0000000080022bdc 0x40000000 +core 0: 0x00000000800021fc (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021fc (0x00032687) f13 0xffffffff40800000 mem 0x0000000080002b14 +core 0: 0x0000000080002200 (0x0ce12027) fsw fa4, 192(sp) +core 0: 3 0x0000000080002200 (0x0ce12027) mem 0x0000000080022be0 0x40200000 +core 0: 0x0000000080002204 (0x0008a707) flw fa4, 0(a7) +core 0: 3 0x0000000080002204 (0x0008a707) f14 0xffffffff41000000 mem 0x0000000080002b18 +core 0: 0x0000000080002208 (0x0cc12227) fsw fa2, 196(sp) +core 0: 3 0x0000000080002208 (0x0cc12227) mem 0x0000000080022be4 0x40400000 +core 0: 0x000000008000220c (0x0cd12427) fsw fa3, 200(sp) +core 0: 3 0x000000008000220c (0x0cd12427) mem 0x0000000080022be8 0x40800000 +core 0: 0x0000000080002210 (0x0ce12627) fsw fa4, 204(sp) +core 0: 3 0x0000000080002210 (0x0ce12627) mem 0x0000000080022bec 0x41000000 +core 0: 0x0000000080002214 (0x00082707) flw fa4, 0(a6) +core 0: 3 0x0000000080002214 (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002b1c +core 0: 0x0000000080002218 (0x00052607) flw fa2, 0(a0) +core 0: 3 0x0000000080002218 (0x00052607) f12 0xffffffff42000000 mem 0x0000000080002b20 +core 0: 0x000000008000221c (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x000000008000221c (0x0005a687) f13 0xffffffff7f800000 mem 0x0000000080002b24 +core 0: 0x0000000080002220 (0x0ce12827) fsw fa4, 208(sp) +core 0: 3 0x0000000080002220 (0x0ce12827) mem 0x0000000080022bf0 0x41800000 +core 0: 0x0000000080002224 (0x00062707) flw fa4, 0(a2) +core 0: 3 0x0000000080002224 (0x00062707) f14 0xffffffff7fc00000 mem 0x0000000080002b28 +core 0: 0x0000000080002228 (0x0cc12a27) fsw fa2, 212(sp) +core 0: 3 0x0000000080002228 (0x0cc12a27) mem 0x0000000080022bf4 0x42000000 +core 0: 0x000000008000222c (0x0cd12c27) fsw fa3, 216(sp) +core 0: 3 0x000000008000222c (0x0cd12c27) mem 0x0000000080022bf8 0x7f800000 +core 0: 0x0000000080002230 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002230 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002234 (0x0ce12e27) fsw fa4, 220(sp) +core 0: 3 0x0000000080002234 (0x0ce12e27) mem 0x0000000080022bfc 0x7fc00000 +core 0: 0x0000000080002238 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002238 (0xf4079ce3) +core 0: 0x000000008000223c (0xc00027f3) csrr a5, cycle +core 0: 3 0x000000008000223c (0xc00027f3) x15 0x0000000000001053 +core 0: 0x0000000080002240 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002240 (0xc00027f3) x15 0x000000000000105c +core 0: 0x0000000080002244 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002244 (0x00000797) x15 0x0000000080002244 +core 0: 0x0000000080002248 (0x79c7b787) fld fa5, 1948(a5) +core 0: 3 0x0000000080002248 (0x79c7b787) f15 0xbff0000000000000 mem 0x00000000800029e0 +core 0: 0x000000008000224c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000224c (0x00000797) x15 0x000000008000224c +core 0: 0x0000000080002250 (0x79c7ba07) fld fs4, 1948(a5) +core 0: 3 0x0000000080002250 (0x79c7ba07) f20 0x3ef0000000000000 mem 0x00000000800029e8 +core 0: 0x0000000080002254 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002254 (0x00000797) x15 0x0000000080002254 +core 0: 0x0000000080002258 (0x79c7b987) fld fs3, 1948(a5) +core 0: 3 0x0000000080002258 (0x79c7b987) f19 0x3f00000000000000 mem 0x00000000800029f0 +core 0: 0x000000008000225c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000225c (0x00000797) x15 0x000000008000225c +core 0: 0x0000000080002260 (0x79c7b907) fld fs2, 1948(a5) +core 0: 3 0x0000000080002260 (0x79c7b907) f18 0x3f10000000000000 mem 0x00000000800029f8 +core 0: 0x0000000080002264 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002264 (0x00000797) x15 0x0000000080002264 +core 0: 0x0000000080002268 (0x79c7b487) fld fs1, 1948(a5) +core 0: 3 0x0000000080002268 (0x79c7b487) f9 0x3f20000000000000 mem 0x0000000080002a00 +core 0: 0x000000008000226c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000226c (0x00000797) x15 0x000000008000226c +core 0: 0x0000000080002270 (0x79c7b407) fld fs0, 1948(a5) +core 0: 3 0x0000000080002270 (0x79c7b407) f8 0x3f30000000000000 mem 0x0000000080002a08 +core 0: 0x0000000080002274 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002274 (0x00000797) x15 0x0000000080002274 +core 0: 0x0000000080002278 (0x79c7bf87) fld ft11, 1948(a5) +core 0: 3 0x0000000080002278 (0x79c7bf87) f31 0x3f40000000000000 mem 0x0000000080002a10 +core 0: 0x000000008000227c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000227c (0x00000797) x15 0x000000008000227c +core 0: 0x0000000080002280 (0x79c7bf07) fld ft10, 1948(a5) +core 0: 3 0x0000000080002280 (0x79c7bf07) f30 0x3f50000000000000 mem 0x0000000080002a18 +core 0: 0x0000000080002284 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002284 (0x00000797) x15 0x0000000080002284 +core 0: 0x0000000080002288 (0x79c7be87) fld ft9, 1948(a5) +core 0: 3 0x0000000080002288 (0x79c7be87) f29 0x3f60000000000000 mem 0x0000000080002a20 +core 0: 0x000000008000228c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000228c (0x00000797) x15 0x000000008000228c +core 0: 0x0000000080002290 (0x79c7be07) fld ft8, 1948(a5) +core 0: 3 0x0000000080002290 (0x79c7be07) f28 0x3f70000000000000 mem 0x0000000080002a28 +core 0: 0x0000000080002294 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002294 (0x00000797) x15 0x0000000080002294 +core 0: 0x0000000080002298 (0x79c7b887) fld fa7, 1948(a5) +core 0: 3 0x0000000080002298 (0x79c7b887) f17 0x3f80000000000000 mem 0x0000000080002a30 +core 0: 0x000000008000229c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000229c (0x00000797) x15 0x000000008000229c +core 0: 0x00000000800022a0 (0x79c7b807) fld fa6, 1948(a5) +core 0: 3 0x00000000800022a0 (0x79c7b807) f16 0x3f90000000000000 mem 0x0000000080002a38 +core 0: 0x00000000800022a4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022a4 (0x00000797) x15 0x00000000800022a4 +core 0: 0x00000000800022a8 (0x79c7b387) fld ft7, 1948(a5) +core 0: 3 0x00000000800022a8 (0x79c7b387) f7 0x3fa0000000000000 mem 0x0000000080002a40 +core 0: 0x00000000800022ac (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022ac (0x00000797) x15 0x00000000800022ac +core 0: 0x00000000800022b0 (0x79c7b307) fld ft6, 1948(a5) +core 0: 3 0x00000000800022b0 (0x79c7b307) f6 0x3fb0000000000000 mem 0x0000000080002a48 +core 0: 0x00000000800022b4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022b4 (0x00000797) x15 0x00000000800022b4 +core 0: 0x00000000800022b8 (0x79c7b287) fld ft5, 1948(a5) +core 0: 3 0x00000000800022b8 (0x79c7b287) f5 0x3fc0000000000000 mem 0x0000000080002a50 +core 0: 0x00000000800022bc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022bc (0x00000797) x15 0x00000000800022bc +core 0: 0x00000000800022c0 (0x79c7b207) fld ft4, 1948(a5) +core 0: 3 0x00000000800022c0 (0x79c7b207) f4 0x3fd0000000000000 mem 0x0000000080002a58 +core 0: 0x00000000800022c4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022c4 (0x00000797) x15 0x00000000800022c4 +core 0: 0x00000000800022c8 (0x79c7b187) fld ft3, 1948(a5) +core 0: 3 0x00000000800022c8 (0x79c7b187) f3 0x3fe0000000000000 mem 0x0000000080002a60 +core 0: 0x00000000800022cc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022cc (0x00000797) x15 0x00000000800022cc +core 0: 0x00000000800022d0 (0x79c7b107) fld ft2, 1948(a5) +core 0: 3 0x00000000800022d0 (0x79c7b107) f2 0x3fe8000000000000 mem 0x0000000080002a68 +core 0: 0x00000000800022d4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022d4 (0x00000797) x15 0x00000000800022d4 +core 0: 0x00000000800022d8 (0x79c7b087) fld ft1, 1948(a5) +core 0: 3 0x00000000800022d8 (0x79c7b087) f1 0x3ff0000000000000 mem 0x0000000080002a70 +core 0: 0x00000000800022dc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022dc (0x00000797) x15 0x00000000800022dc +core 0: 0x00000000800022e0 (0x79c7b007) fld ft0, 1948(a5) +core 0: 3 0x00000000800022e0 (0x79c7b007) f0 0x3ff4000000000000 mem 0x0000000080002a78 +core 0: 0x00000000800022e4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022e4 (0x00000797) x15 0x00000000800022e4 +core 0: 0x00000000800022e8 (0x79c7b507) fld fa0, 1948(a5) +core 0: 3 0x00000000800022e8 (0x79c7b507) f10 0x3ff8000000000000 mem 0x0000000080002a80 +core 0: 0x00000000800022ec (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800022ec (0x00000797) x15 0x00000000800022ec +core 0: 0x00000000800022f0 (0x79c7b587) fld fa1, 1948(a5) +core 0: 3 0x00000000800022f0 (0x79c7b587) f11 0x3ffc000000000000 mem 0x0000000080002a88 +core 0: 0x00000000800022f4 (0x00000e17) auipc t3, 0x0 +core 0: 3 0x00000000800022f4 (0x00000e17) x28 0x00000000800022f4 +core 0: 0x00000000800022f8 (0x79ce0e13) addi t3, t3, 1948 +core 0: 3 0x00000000800022f8 (0x79ce0e13) x28 0x0000000080002a90 +core 0: 0x00000000800022fc (0x00a00793) li a5, 10 +core 0: 3 0x00000000800022fc (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002300 (0x00000317) auipc t1, 0x0 +core 0: 3 0x0000000080002300 (0x00000317) x6 0x0000000080002300 +core 0: 0x0000000080002304 (0x79830313) addi t1, t1, 1944 +core 0: 3 0x0000000080002304 (0x79830313) x6 0x0000000080002a98 +core 0: 0x0000000080002308 (0x00000897) auipc a7, 0x0 +core 0: 3 0x0000000080002308 (0x00000897) x17 0x0000000080002308 +core 0: 0x000000008000230c (0x79888893) addi a7, a7, 1944 +core 0: 3 0x000000008000230c (0x79888893) x17 0x0000000080002aa0 +core 0: 0x0000000080002310 (0x00000817) auipc a6, 0x0 +core 0: 3 0x0000000080002310 (0x00000817) x16 0x0000000080002310 +core 0: 0x0000000080002314 (0x79880813) addi a6, a6, 1944 +core 0: 3 0x0000000080002314 (0x79880813) x16 0x0000000080002aa8 +core 0: 0x0000000080002318 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080002318 (0x00000517) x10 0x0000000080002318 +core 0: 0x000000008000231c (0x79850513) addi a0, a0, 1944 +core 0: 3 0x000000008000231c (0x79850513) x10 0x0000000080002ab0 +core 0: 0x0000000080002320 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080002320 (0x00000597) x11 0x0000000080002320 +core 0: 0x0000000080002324 (0x79858593) addi a1, a1, 1944 +core 0: 3 0x0000000080002324 (0x79858593) x11 0x0000000080002ab8 +core 0: 0x0000000080002328 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080002328 (0x00000617) x12 0x0000000080002328 +core 0: 0x000000008000232c (0x79860613) addi a2, a2, 1944 +core 0: 3 0x000000008000232c (0x79860613) x12 0x0000000080002ac0 +core 0: 0x0000000080002330 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080002330 (0x00000697) x13 0x0000000080002330 +core 0: 0x0000000080002334 (0x79868693) addi a3, a3, 1944 +core 0: 3 0x0000000080002334 (0x79868693) x13 0x0000000080002ac8 +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x0000000080002338 (0x0ef13027) fsd fa5, 224(sp) +core 0: 3 0x0000000080002338 (0x0ef13027) mem 0x0000000080022c00 0xbff0000000000000 +core 0: 0x000000008000233c (0x0ef13427) fsd fa5, 232(sp) +core 0: 3 0x000000008000233c (0x0ef13427) mem 0x0000000080022c08 0xbff0000000000000 +core 0: 0x0000000080002340 (0x0f413827) fsd fs4, 240(sp) +core 0: 3 0x0000000080002340 (0x0f413827) mem 0x0000000080022c10 0x3ef0000000000000 +core 0: 0x0000000080002344 (0x0f313c27) fsd fs3, 248(sp) +core 0: 3 0x0000000080002344 (0x0f313c27) mem 0x0000000080022c18 0x3f00000000000000 +core 0: 0x0000000080002348 (0x11213027) fsd fs2, 256(sp) +core 0: 3 0x0000000080002348 (0x11213027) mem 0x0000000080022c20 0x3f10000000000000 +core 0: 0x000000008000234c (0x10913427) fsd fs1, 264(sp) +core 0: 3 0x000000008000234c (0x10913427) mem 0x0000000080022c28 0x3f20000000000000 +core 0: 0x0000000080002350 (0x10813827) fsd fs0, 272(sp) +core 0: 3 0x0000000080002350 (0x10813827) mem 0x0000000080022c30 0x3f30000000000000 +core 0: 0x0000000080002354 (0x11f13c27) fsd ft11, 280(sp) +core 0: 3 0x0000000080002354 (0x11f13c27) mem 0x0000000080022c38 0x3f40000000000000 +core 0: 0x0000000080002358 (0x13e13027) fsd ft10, 288(sp) +core 0: 3 0x0000000080002358 (0x13e13027) mem 0x0000000080022c40 0x3f50000000000000 +core 0: 0x000000008000235c (0x13d13427) fsd ft9, 296(sp) +core 0: 3 0x000000008000235c (0x13d13427) mem 0x0000000080022c48 0x3f60000000000000 +core 0: 0x0000000080002360 (0x13c13827) fsd ft8, 304(sp) +core 0: 3 0x0000000080002360 (0x13c13827) mem 0x0000000080022c50 0x3f70000000000000 +core 0: 0x0000000080002364 (0x13113c27) fsd fa7, 312(sp) +core 0: 3 0x0000000080002364 (0x13113c27) mem 0x0000000080022c58 0x3f80000000000000 +core 0: 0x0000000080002368 (0x15013027) fsd fa6, 320(sp) +core 0: 3 0x0000000080002368 (0x15013027) mem 0x0000000080022c60 0x3f90000000000000 +core 0: 0x000000008000236c (0x14713427) fsd ft7, 328(sp) +core 0: 3 0x000000008000236c (0x14713427) mem 0x0000000080022c68 0x3fa0000000000000 +core 0: 0x0000000080002370 (0x14613827) fsd ft6, 336(sp) +core 0: 3 0x0000000080002370 (0x14613827) mem 0x0000000080022c70 0x3fb0000000000000 +core 0: 0x0000000080002374 (0x14513c27) fsd ft5, 344(sp) +core 0: 3 0x0000000080002374 (0x14513c27) mem 0x0000000080022c78 0x3fc0000000000000 +core 0: 0x0000000080002378 (0x16413027) fsd ft4, 352(sp) +core 0: 3 0x0000000080002378 (0x16413027) mem 0x0000000080022c80 0x3fd0000000000000 +core 0: 0x000000008000237c (0x16313427) fsd ft3, 360(sp) +core 0: 3 0x000000008000237c (0x16313427) mem 0x0000000080022c88 0x3fe0000000000000 +core 0: 0x0000000080002380 (0x16213827) fsd ft2, 368(sp) +core 0: 3 0x0000000080002380 (0x16213827) mem 0x0000000080022c90 0x3fe8000000000000 +core 0: 0x0000000080002384 (0x16113c27) fsd ft1, 376(sp) +core 0: 3 0x0000000080002384 (0x16113c27) mem 0x0000000080022c98 0x3ff0000000000000 +core 0: 0x0000000080002388 (0x18013027) fsd ft0, 384(sp) +core 0: 3 0x0000000080002388 (0x18013027) mem 0x0000000080022ca0 0x3ff4000000000000 +core 0: 0x000000008000238c (0x000e3687) fld fa3, 0(t3) +core 0: 3 0x000000008000238c (0x000e3687) f13 0x4000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080002390 (0x18a13427) fsd fa0, 392(sp) +core 0: 3 0x0000000080002390 (0x18a13427) mem 0x0000000080022ca8 0x3ff8000000000000 +core 0: 0x0000000080002394 (0x00033707) fld fa4, 0(t1) +core 0: 3 0x0000000080002394 (0x00033707) f14 0x4004000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080002398 (0x18b13827) fsd fa1, 400(sp) +core 0: 3 0x0000000080002398 (0x18b13827) mem 0x0000000080022cb0 0x3ffc000000000000 +core 0: 0x000000008000239c (0x00073607) fld fa2, 0(a4) +core 0: 3 0x000000008000239c (0x00073607) f12 0x4008000000000000 mem 0x00000000800029d0 +core 0: 0x00000000800023a0 (0x18d13c27) fsd fa3, 408(sp) +core 0: 3 0x00000000800023a0 (0x18d13c27) mem 0x0000000080022cb8 0x4000000000000000 +core 0: 0x00000000800023a4 (0x0008b687) fld fa3, 0(a7) +core 0: 3 0x00000000800023a4 (0x0008b687) f13 0x4010000000000000 mem 0x0000000080002aa0 +core 0: 0x00000000800023a8 (0x1ae13027) fsd fa4, 416(sp) +core 0: 3 0x00000000800023a8 (0x1ae13027) mem 0x0000000080022cc0 0x4004000000000000 +core 0: 0x00000000800023ac (0x00083707) fld fa4, 0(a6) +core 0: 3 0x00000000800023ac (0x00083707) f14 0x4020000000000000 mem 0x0000000080002aa8 +core 0: 0x00000000800023b0 (0x1ac13427) fsd fa2, 424(sp) +core 0: 3 0x00000000800023b0 (0x1ac13427) mem 0x0000000080022cc8 0x4008000000000000 +core 0: 0x00000000800023b4 (0x1ad13827) fsd fa3, 432(sp) +core 0: 3 0x00000000800023b4 (0x1ad13827) mem 0x0000000080022cd0 0x4010000000000000 +core 0: 0x00000000800023b8 (0x1ae13c27) fsd fa4, 440(sp) +core 0: 3 0x00000000800023b8 (0x1ae13c27) mem 0x0000000080022cd8 0x4020000000000000 +core 0: 0x00000000800023bc (0x00053707) fld fa4, 0(a0) +core 0: 3 0x00000000800023bc (0x00053707) f14 0x4030000000000000 mem 0x0000000080002ab0 +core 0: 0x00000000800023c0 (0x0005b607) fld fa2, 0(a1) +core 0: 3 0x00000000800023c0 (0x0005b607) f12 0x4040000000000000 mem 0x0000000080002ab8 +core 0: 0x00000000800023c4 (0x00063687) fld fa3, 0(a2) +core 0: 3 0x00000000800023c4 (0x00063687) f13 0x7ff0000000000000 mem 0x0000000080002ac0 +core 0: 0x00000000800023c8 (0x1ce13027) fsd fa4, 448(sp) +core 0: 3 0x00000000800023c8 (0x1ce13027) mem 0x0000000080022ce0 0x4030000000000000 +core 0: 0x00000000800023cc (0x0006b707) fld fa4, 0(a3) +core 0: 3 0x00000000800023cc (0x0006b707) f14 0x7ff8000000000000 mem 0x0000000080002ac8 +core 0: 0x00000000800023d0 (0x1cc13427) fsd fa2, 456(sp) +core 0: 3 0x00000000800023d0 (0x1cc13427) mem 0x0000000080022ce8 0x4040000000000000 +core 0: 0x00000000800023d4 (0x1cd13827) fsd fa3, 464(sp) +core 0: 3 0x00000000800023d4 (0x1cd13827) mem 0x0000000080022cf0 0x7ff0000000000000 +core 0: 0x00000000800023d8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800023d8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x00000000800023dc (0x1ce13c27) fsd fa4, 472(sp) +core 0: 3 0x00000000800023dc (0x1ce13c27) mem 0x0000000080022cf8 0x7ff8000000000000 +core 0: 0x00000000800023e0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800023e0 (0xf4079ce3) +core 0: 0x00000000800023e4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800023e4 (0xc00027f3) x15 0x000000000000133b +core 0: 0x00000000800023e8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800023e8 (0xc00027f3) x15 0x0000000000001344 +core 0: 0x00000000800023ec (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800023ec (0x00000797) x15 0x00000000800023ec +core 0: 0x00000000800023f0 (0x5cc7b407) fld fs0, 1484(a5) +core 0: 3 0x00000000800023f0 (0x5cc7b407) f8 0x41f0000000000000 mem 0x00000000800029b8 +core 0: 0x00000000800023f4 (0x97818413) addi s0, gp, -1672 +core 0: 3 0x00000000800023f4 (0x97818413) x8 0x0000000080002b30 +core 0: 0x00000000800023f8 (0x9c818493) addi s1, gp, -1592 +core 0: 3 0x00000000800023f8 (0x9c818493) x9 0x0000000080002b80 +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x41e0000000200000 mem 0x0000000080002b30 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x41e0000000200000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x41e0000000200000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x41e0000000200000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x41e0000000200000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x41e0000000200000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x41e0000000200000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x0000000041e00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000041e00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000041e00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000200000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000000000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x41e0000000200000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0x0000000080000001 +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b38 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0xc1e0000000200000 mem 0x0000000080002b38 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0xc1e0000000200000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0xc1e0000000200000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0xc1e0000000200000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0xc1e0000000200000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0xc1e0000000200000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0xc1e0000000200000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x00000000c1e00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000041e00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000041e00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000200000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000080000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0xc1e0000000200000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0xffffffff7fffffff +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b40 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x41f0000000100000 mem 0x0000000080002b40 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x41f0000000100000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x41f0000000100000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x41f0000000100000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x41f0000000100000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x41f0000000100000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x41f0000000100000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x0000000041f00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000041f00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000041f00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000100000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000000000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002550 (0x0ab66863) bltu a2, a1, pc + 176 +core 0: 3 0x0000000080002550 (0x0ab66863) +core 0: 0x0000000080002554 (0x3ac58c63) beq a1, a2, pc + 952 +core 0: 3 0x0000000080002554 (0x3ac58c63) +core 0: 0x0000000080002558 (0x011e78b3) and a7, t3, a7 +core 0: 3 0x0000000080002558 (0x011e78b3) x17 0x0000000041f00000 +core 0: 0x000000008000255c (0x16089263) bnez a7, pc + 356 +core 0: 3 0x000000008000255c (0x16089263) +core 0: 0x00000000800026c0 (0x014ed793) srli a5, t4, 20 +core 0: 3 0x00000000800026c0 (0x014ed793) x15 0x000000000000041f +core 0: 0x00000000800026c4 (0x4146d81b) sraiw a6, a3, 20 +core 0: 3 0x00000000800026c4 (0x4146d81b) x16 0x000000000000041f +core 0: 0x00000000800026c8 (0x7ff7f793) andi a5, a5, 2047 +core 0: 3 0x00000000800026c8 (0x7ff7f793) x15 0x000000000000041f +core 0: 0x00000000800026cc (0xc018089b) addiw a7, a6, -1023 +core 0: 3 0x00000000800026cc (0xc018089b) x17 0x0000000000000020 +core 0: 0x00000000800026d0 (0x0c078863) beqz a5, pc + 208 +core 0: 3 0x00000000800026d0 (0x0c078863) +core 0: 0x00000000800026d4 (0x001006b7) lui a3, 0x100 +core 0: 3 0x00000000800026d4 (0x001006b7) x13 0x0000000000100000 +core 0: 0x00000000800026d8 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800026d8 (0xfff68693) x13 0x00000000000fffff +core 0: 0x00000000800026dc (0x00de77b3) and a5, t3, a3 +core 0: 3 0x00000000800026dc (0x00de77b3) x15 0x0000000000000000 +core 0: 0x00000000800026e0 (0x4147571b) sraiw a4, a4, 20 +core 0: 3 0x00000000800026e0 (0x4147571b) x14 0x000000000000041f +core 0: 0x00000000800026e4 (0x29479793) bseti a5, a5, 20 +core 0: 3 0x00000000800026e4 (0x29479793) x15 0x0000000000100000 +core 0: 0x00000000800026e8 (0x00def6b3) and a3, t4, a3 +core 0: 3 0x00000000800026e8 (0x00def6b3) x13 0x0000000000000000 +core 0: 0x00000000800026ec (0xc017031b) addiw t1, a4, -1023 +core 0: 3 0x00000000800026ec (0xc017031b) x6 0x0000000000000020 +core 0: 0x00000000800026f0 (0x0007879b) sext.w a5, a5 +core 0: 3 0x00000000800026f0 (0x0007879b) x15 0x0000000000100000 +core 0: 0x00000000800026f4 (0x29469713) bseti a4, a3, 20 +core 0: 3 0x00000000800026f4 (0x29469713) x14 0x0000000000100000 +core 0: 0x00000000800026f8 (0x40b6083b) subw a6, a2, a1 +core 0: 3 0x00000000800026f8 (0x40b6083b) x16 0x0000000000100000 +core 0: 0x00000000800026fc (0x406886bb) subw a3, a7, t1 +core 0: 3 0x00000000800026fc (0x406886bb) x13 0x0000000000000000 +core 0: 0x0000000080002700 (0xf4069ce3) bnez a3, pc - 168 +core 0: 3 0x0000000080002700 (0xf4069ce3) +core 0: 0x0000000080002704 (0x40e7873b) subw a4, a5, a4 +core 0: 3 0x0000000080002704 (0x40e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002708 (0x00b67463) bgeu a2, a1, pc + 8 +core 0: 3 0x0000000080002708 (0x00b67463) +core 0: 0x0000000080002710 (0x00075663) bgez a4, pc + 12 +core 0: 3 0x0000000080002710 (0x00075663) +core 0: 0x000000008000271c (0x010767b3) or a5, a4, a6 +core 0: 3 0x000000008000271c (0x010767b3) x15 0x0000000000100000 +core 0: 0x0000000080002720 (0x0007879b) sext.w a5, a5 +core 0: 3 0x0000000080002720 (0x0007879b) x15 0x0000000000100000 +core 0: 0x0000000080002724 (0xf80782e3) beqz a5, pc - 124 +core 0: 3 0x0000000080002724 (0xf80782e3) +core 0: 0x0000000080002728 (0x001007b7) lui a5, 0x100 +core 0: 3 0x0000000080002728 (0x001007b7) x15 0x0000000000100000 +core 0: 0x000000008000272c (0x02f75063) bge a4, a5, pc + 32 +core 0: 3 0x000000008000272c (0x02f75063) +core 0: 0x0000000080002730 (0x001006b7) lui a3, 0x100 +core 0: 3 0x0000000080002730 (0x001006b7) x13 0x0000000000100000 +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001f +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000200000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001e +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000400000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001d +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000800000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001c +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000001000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001b +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000002000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001a +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000004000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000019 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000008000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000018 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000010000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000017 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000020000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000016 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000040000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000015 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0xffffffff80000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000001 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000001 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000014 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000002 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000002 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000013 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000004 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000004 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000012 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000008 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000008 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000011 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000010 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000010 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000010 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000020 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000020 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000f +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000040 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000040 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000e +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000080 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000080 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000d +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000100 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000100 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000c +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000200 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000200 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000b +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000400 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000400 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000a +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000800 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000800 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000009 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000001000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000001000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000008 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000002000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000002000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000007 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000004000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000004000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000006 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000008000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000008000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000005 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000010000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000010000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000004 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000020000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000020000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000003 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000040000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000040000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000002 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000080000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000080000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000001 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000100000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000100000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000000 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x000000008000274c (0xc0200793) li a5, -1022 +core 0: 3 0x000000008000274c (0xc0200793) x15 0xfffffffffffffc02 +core 0: 0x0000000080002750 (0x0ef34263) blt t1, a5, pc + 228 +core 0: 3 0x0000000080002750 (0x0ef34263) +core 0: 0x0000000080002754 (0xfff007b7) lui a5, 0xfff00 +core 0: 3 0x0000000080002754 (0xfff007b7) x15 0xfffffffffff00000 +core 0: 0x0000000080002758 (0x00f7073b) addw a4, a4, a5 +core 0: 3 0x0000000080002758 (0x00f7073b) x14 0x0000000000000000 +core 0: 0x000000008000275c (0x3ff006b7) lui a3, 0x3ff00 +core 0: 3 0x000000008000275c (0x3ff006b7) x13 0x000000003ff00000 +core 0: 0x0000000080002760 (0x01431793) slli a5, t1, 20 +core 0: 3 0x0000000080002760 (0x01431793) x15 0x0000000000000000 +core 0: 0x0000000080002764 (0x00d787bb) addw a5, a5, a3 +core 0: 3 0x0000000080002764 (0x00d787bb) x15 0x000000003ff00000 +core 0: 0x0000000080002768 (0x00e56733) or a4, a0, a4 +core 0: 3 0x0000000080002768 (0x00e56733) x14 0x0000000000000000 +core 0: 0x000000008000276c (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x000000008000276c (0x00e7e7b3) x15 0x000000003ff00000 +core 0: 0x0000000080002770 (0x0808083b) zext.w a6, a6 +core 0: 3 0x0000000080002770 (0x0808083b) x16 0x0000000000000000 +core 0: 0x0000000080002774 (0x02079793) slli a5, a5, 32 +core 0: 3 0x0000000080002774 (0x02079793) x15 0x3ff0000000000000 +core 0: 0x0000000080002778 (0x0107e7b3) or a5, a5, a6 +core 0: 3 0x0000000080002778 (0x0107e7b3) x15 0x3ff0000000000000 +core 0: 0x000000008000277c (0xe85ff06f) j pc - 0x17c +core 0: 3 0x000000008000277c (0xe85ff06f) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x3ff0000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0x0000000000000001 +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b48 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0xc1f0000000100000 mem 0x0000000080002b48 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0xc1f0000000100000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0xc1f0000000100000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0xc1f0000000100000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0xc1f0000000100000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0xc1f0000000100000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0xc1f0000000100000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x00000000c1f00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000041f00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000041f00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000100000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000080000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002550 (0x0ab66863) bltu a2, a1, pc + 176 +core 0: 3 0x0000000080002550 (0x0ab66863) +core 0: 0x0000000080002554 (0x3ac58c63) beq a1, a2, pc + 952 +core 0: 3 0x0000000080002554 (0x3ac58c63) +core 0: 0x0000000080002558 (0x011e78b3) and a7, t3, a7 +core 0: 3 0x0000000080002558 (0x011e78b3) x17 0x0000000041f00000 +core 0: 0x000000008000255c (0x16089263) bnez a7, pc + 356 +core 0: 3 0x000000008000255c (0x16089263) +core 0: 0x00000000800026c0 (0x014ed793) srli a5, t4, 20 +core 0: 3 0x00000000800026c0 (0x014ed793) x15 0x000000000000041f +core 0: 0x00000000800026c4 (0x4146d81b) sraiw a6, a3, 20 +core 0: 3 0x00000000800026c4 (0x4146d81b) x16 0x000000000000041f +core 0: 0x00000000800026c8 (0x7ff7f793) andi a5, a5, 2047 +core 0: 3 0x00000000800026c8 (0x7ff7f793) x15 0x000000000000041f +core 0: 0x00000000800026cc (0xc018089b) addiw a7, a6, -1023 +core 0: 3 0x00000000800026cc (0xc018089b) x17 0x0000000000000020 +core 0: 0x00000000800026d0 (0x0c078863) beqz a5, pc + 208 +core 0: 3 0x00000000800026d0 (0x0c078863) +core 0: 0x00000000800026d4 (0x001006b7) lui a3, 0x100 +core 0: 3 0x00000000800026d4 (0x001006b7) x13 0x0000000000100000 +core 0: 0x00000000800026d8 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800026d8 (0xfff68693) x13 0x00000000000fffff +core 0: 0x00000000800026dc (0x00de77b3) and a5, t3, a3 +core 0: 3 0x00000000800026dc (0x00de77b3) x15 0x0000000000000000 +core 0: 0x00000000800026e0 (0x4147571b) sraiw a4, a4, 20 +core 0: 3 0x00000000800026e0 (0x4147571b) x14 0x000000000000041f +core 0: 0x00000000800026e4 (0x29479793) bseti a5, a5, 20 +core 0: 3 0x00000000800026e4 (0x29479793) x15 0x0000000000100000 +core 0: 0x00000000800026e8 (0x00def6b3) and a3, t4, a3 +core 0: 3 0x00000000800026e8 (0x00def6b3) x13 0x0000000000000000 +core 0: 0x00000000800026ec (0xc017031b) addiw t1, a4, -1023 +core 0: 3 0x00000000800026ec (0xc017031b) x6 0x0000000000000020 +core 0: 0x00000000800026f0 (0x0007879b) sext.w a5, a5 +core 0: 3 0x00000000800026f0 (0x0007879b) x15 0x0000000000100000 +core 0: 0x00000000800026f4 (0x29469713) bseti a4, a3, 20 +core 0: 3 0x00000000800026f4 (0x29469713) x14 0x0000000000100000 +core 0: 0x00000000800026f8 (0x40b6083b) subw a6, a2, a1 +core 0: 3 0x00000000800026f8 (0x40b6083b) x16 0x0000000000100000 +core 0: 0x00000000800026fc (0x406886bb) subw a3, a7, t1 +core 0: 3 0x00000000800026fc (0x406886bb) x13 0x0000000000000000 +core 0: 0x0000000080002700 (0xf4069ce3) bnez a3, pc - 168 +core 0: 3 0x0000000080002700 (0xf4069ce3) +core 0: 0x0000000080002704 (0x40e7873b) subw a4, a5, a4 +core 0: 3 0x0000000080002704 (0x40e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002708 (0x00b67463) bgeu a2, a1, pc + 8 +core 0: 3 0x0000000080002708 (0x00b67463) +core 0: 0x0000000080002710 (0x00075663) bgez a4, pc + 12 +core 0: 3 0x0000000080002710 (0x00075663) +core 0: 0x000000008000271c (0x010767b3) or a5, a4, a6 +core 0: 3 0x000000008000271c (0x010767b3) x15 0x0000000000100000 +core 0: 0x0000000080002720 (0x0007879b) sext.w a5, a5 +core 0: 3 0x0000000080002720 (0x0007879b) x15 0x0000000000100000 +core 0: 0x0000000080002724 (0xf80782e3) beqz a5, pc - 124 +core 0: 3 0x0000000080002724 (0xf80782e3) +core 0: 0x0000000080002728 (0x001007b7) lui a5, 0x100 +core 0: 3 0x0000000080002728 (0x001007b7) x15 0x0000000000100000 +core 0: 0x000000008000272c (0x02f75063) bge a4, a5, pc + 32 +core 0: 3 0x000000008000272c (0x02f75063) +core 0: 0x0000000080002730 (0x001006b7) lui a3, 0x100 +core 0: 3 0x0000000080002730 (0x001006b7) x13 0x0000000000100000 +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001f +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000200000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001e +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000400000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001d +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000800000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001c +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000001000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001b +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000002000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000001a +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000004000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000019 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000008000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000018 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000010000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000017 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000020000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000016 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000040000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000015 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0xffffffff80000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000001 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000001 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000014 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000002 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000002 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000013 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000004 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000004 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000012 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000008 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000008 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000011 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000010 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000010 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000010 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000020 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000020 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000f +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000040 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000040 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000e +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000080 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000080 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000d +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000100 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000100 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000c +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000200 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000200 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000b +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000400 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000400 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x000000000000000a +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000000800 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000000800 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000009 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000001000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000001000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000008 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000002000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000002000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000007 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000004000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000004000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000006 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000008000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000008000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000005 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000010000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000010000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000004 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000020000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000020000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000003 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000040000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000040000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000002 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000080000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000080000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000001 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x0000000080002734 (0x01f8579b) srliw a5, a6, 31 +core 0: 3 0x0000000080002734 (0x01f8579b) x15 0x0000000000000000 +core 0: 0x0000000080002738 (0x0017171b) slliw a4, a4, 1 +core 0: 3 0x0000000080002738 (0x0017171b) x14 0x0000000000100000 +core 0: 0x000000008000273c (0x00e7873b) addw a4, a5, a4 +core 0: 3 0x000000008000273c (0x00e7873b) x14 0x0000000000100000 +core 0: 0x0000000080002740 (0xfff3031b) addiw t1, t1, -1 +core 0: 3 0x0000000080002740 (0xfff3031b) x6 0x0000000000000000 +core 0: 0x0000000080002744 (0x0018181b) slliw a6, a6, 1 +core 0: 3 0x0000000080002744 (0x0018181b) x16 0x0000000000000000 +core 0: 0x0000000080002748 (0xfed746e3) blt a4, a3, pc - 20 +core 0: 3 0x0000000080002748 (0xfed746e3) +core 0: 0x000000008000274c (0xc0200793) li a5, -1022 +core 0: 3 0x000000008000274c (0xc0200793) x15 0xfffffffffffffc02 +core 0: 0x0000000080002750 (0x0ef34263) blt t1, a5, pc + 228 +core 0: 3 0x0000000080002750 (0x0ef34263) +core 0: 0x0000000080002754 (0xfff007b7) lui a5, 0xfff00 +core 0: 3 0x0000000080002754 (0xfff007b7) x15 0xfffffffffff00000 +core 0: 0x0000000080002758 (0x00f7073b) addw a4, a4, a5 +core 0: 3 0x0000000080002758 (0x00f7073b) x14 0x0000000000000000 +core 0: 0x000000008000275c (0x3ff006b7) lui a3, 0x3ff00 +core 0: 3 0x000000008000275c (0x3ff006b7) x13 0x000000003ff00000 +core 0: 0x0000000080002760 (0x01431793) slli a5, t1, 20 +core 0: 3 0x0000000080002760 (0x01431793) x15 0x0000000000000000 +core 0: 0x0000000080002764 (0x00d787bb) addw a5, a5, a3 +core 0: 3 0x0000000080002764 (0x00d787bb) x15 0x000000003ff00000 +core 0: 0x0000000080002768 (0x00e56733) or a4, a0, a4 +core 0: 3 0x0000000080002768 (0x00e56733) x14 0x0000000080000000 +core 0: 0x000000008000276c (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x000000008000276c (0x00e7e7b3) x15 0x00000000bff00000 +core 0: 0x0000000080002770 (0x0808083b) zext.w a6, a6 +core 0: 3 0x0000000080002770 (0x0808083b) x16 0x0000000000000000 +core 0: 0x0000000080002774 (0x02079793) slli a5, a5, 32 +core 0: 3 0x0000000080002774 (0x02079793) x15 0xbff0000000000000 +core 0: 0x0000000080002778 (0x0107e7b3) or a5, a5, a6 +core 0: 3 0x0000000080002778 (0x0107e7b3) x15 0xbff0000000000000 +core 0: 0x000000008000277c (0xe85ff06f) j pc - 0x17c +core 0: 3 0x000000008000277c (0xe85ff06f) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0xbff0000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0xffffffffffffffff +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b50 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x400a000000000000 mem 0x0000000080002b50 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x400a000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x400a000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x400a000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x400a000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x400a000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x400a000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x00000000400a0000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x00000000400a0000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x00000000400a0000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000000000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000000000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) c1_fflags 0x0000000000000001 x15 0x0000000000000003 +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b58 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x0000000000000000 mem 0x0000000080002b58 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x0000000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x0000000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x0000000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x0000000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x0000000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x0000000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x0000000000000000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000000000000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000000000000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000000000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000000000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x0000000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0x0000000000000000 +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b60 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x8000000000000000 mem 0x0000000080002b60 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x8000000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x8000000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x8000000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x8000000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x8000000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x8000000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x0000000080000000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x0000000000000000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x0000000000000000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x0000000080002528 (0x40b0083b) subw a6, zero, a1 +core 0: 3 0x0000000080002528 (0x40b0083b) x16 0x0000000000000000 +core 0: 0x000000008000252c (0x0105e833) or a6, a1, a6 +core 0: 3 0x000000008000252c (0x0105e833) x16 0x0000000000000000 +core 0: 0x0000000080002530 (0x01f8581b) srliw a6, a6, 31 +core 0: 3 0x0000000080002530 (0x01f8581b) x16 0x0000000000000000 +core 0: 0x0000000080002534 (0x01076833) or a6, a4, a6 +core 0: 3 0x0000000080002534 (0x01076833) x16 0x0000000041f00000 +core 0: 0x0000000080002538 (0x0b08ea63) bltu a7, a6, pc + 180 +core 0: 3 0x0000000080002538 (0x0b08ea63) +core 0: 0x000000008000253c (0x80000537) lui a0, 0x80000 +core 0: 3 0x000000008000253c (0x80000537) x10 0xffffffff80000000 +core 0: 0x0000000080002540 (0x0007861b) sext.w a2, a5 +core 0: 3 0x0000000080002540 (0x0007861b) x12 0x0000000000000000 +core 0: 0x0000000080002544 (0x00ae7533) and a0, t3, a0 +core 0: 3 0x0000000080002544 (0x00ae7533) x10 0x0000000080000000 +core 0: 0x0000000080002548 (0x0cd74063) blt a4, a3, pc + 192 +core 0: 3 0x0000000080002548 (0x0cd74063) +core 0: 0x000000008000254c (0x0ae6ca63) blt a3, a4, pc + 180 +core 0: 3 0x000000008000254c (0x0ae6ca63) +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x8000000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) x15 0x0000000000000000 +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b68 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x7ff0000000000000 mem 0x0000000080002b68 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x7ff0000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x7ff0000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x7ff0000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x7ff0000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x7ff0000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x7ff0000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x000000007ff00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x000000007ff00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x000000007ff00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x00000000800025ec (0xf20787d3) fmv.d.x fa5, a5 +core 0: 3 0x00000000800025ec (0xf20787d3) f15 0x7ff0000000000000 +core 0: 0x00000000800025f0 (0xf2050753) fmv.d.x fa4, a0 +core 0: 3 0x00000000800025f0 (0xf2050753) f14 0x41f0000000000000 +core 0: 0x00000000800025f4 (0x12e7f7d3) fmul.d fa5, fa5, fa4 +core 0: 3 0x00000000800025f4 (0x12e7f7d3) f15 0x7ff0000000000000 +core 0: 0x00000000800025f8 (0x1af7f7d3) fdiv.d fa5, fa5, fa5 +core 0: 3 0x00000000800025f8 (0x1af7f7d3) c1_fflags 0x0000000000000011 f15 0x7ff8000000000000 +core 0: 0x00000000800025fc (0xe20787d3) fmv.x.d a5, fa5 +core 0: 3 0x00000000800025fc (0xe20787d3) x15 0x7ff8000000000000 +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x7ff8000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) c1_fflags 0x0000000000000011 x15 0x7fffffffffffffff +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b70 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0xfff0000000000000 mem 0x0000000080002b70 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0xfff0000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0xfff0000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0xfff0000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0xfff0000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0xfff0000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0xfff0000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x00000000fff00000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x000000007ff00000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x000000007ff00000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x00000000800025ec (0xf20787d3) fmv.d.x fa5, a5 +core 0: 3 0x00000000800025ec (0xf20787d3) f15 0xfff0000000000000 +core 0: 0x00000000800025f0 (0xf2050753) fmv.d.x fa4, a0 +core 0: 3 0x00000000800025f0 (0xf2050753) f14 0x41f0000000000000 +core 0: 0x00000000800025f4 (0x12e7f7d3) fmul.d fa5, fa5, fa4 +core 0: 3 0x00000000800025f4 (0x12e7f7d3) f15 0xfff0000000000000 +core 0: 0x00000000800025f8 (0x1af7f7d3) fdiv.d fa5, fa5, fa5 +core 0: 3 0x00000000800025f8 (0x1af7f7d3) c1_fflags 0x0000000000000011 f15 0x7ff8000000000000 +core 0: 0x00000000800025fc (0xe20787d3) fmv.x.d a5, fa5 +core 0: 3 0x00000000800025fc (0xe20787d3) x15 0x7ff8000000000000 +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x7ff8000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) c1_fflags 0x0000000000000011 x15 0x7fffffffffffffff +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b78 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x00000000800023fc (0x00043787) fld fa5, 0(s0) +core 0: 3 0x00000000800023fc (0x00043787) f15 0x7ff8000000000000 mem 0x0000000080002b78 +core 0: 0x0000000080002400 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002400 (0x04f13c27) mem 0x0000000080022b78 0x7ff8000000000000 +core 0: 0x0000000080002404 (0x05813787) fld fa5, 88(sp) +core 0: 3 0x0000000080002404 (0x05813787) f15 0x7ff8000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002408 (0x04f13c27) fsd fa5, 88(sp) +core 0: 3 0x0000000080002408 (0x04f13c27) mem 0x0000000080022b78 0x7ff8000000000000 +core 0: 0x000000008000240c (0x05813507) fld fa0, 88(sp) +core 0: 3 0x000000008000240c (0x05813507) f10 0x7ff8000000000000 mem 0x0000000080022b78 +core 0: 0x0000000080002410 (0x228405d3) fsgnj.d fa1, fs0, fs0 +core 0: 3 0x0000000080002410 (0x228405d3) f11 0x41f0000000000000 +core 0: 0x0000000080002414 (0x064000ef) jal pc + 0x64 +core 0: 3 0x0000000080002414 (0x064000ef) x1 0x0000000080002418 +core 0: >>>> fmod +core 0: 0x0000000080002478 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080002478 (0xfd010113) x2 0x0000000080022af0 +core 0: 0x000000008000247c (0x00813c27) fsd fs0, 24(sp) +core 0: 3 0x000000008000247c (0x00813c27) mem 0x0000000080022b08 0x41f0000000000000 +core 0: 0x0000000080002480 (0x00b13427) fsd fa1, 8(sp) +core 0: 3 0x0000000080002480 (0x00b13427) mem 0x0000000080022af8 0x41f0000000000000 +core 0: 0x0000000080002484 (0x22a50453) fsgnj.d fs0, fa0, fa0 +core 0: 3 0x0000000080002484 (0x22a50453) f8 0x7ff8000000000000 +core 0: 0x0000000080002488 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080002488 (0x02113423) mem 0x0000000080022b18 0x0000000080002418 +core 0: 0x000000008000248c (0x058000ef) jal pc + 0x58 +core 0: 3 0x000000008000248c (0x058000ef) x1 0x0000000080002490 +core 0: >>>> __ieee754_fmod +core 0: 0x00000000800024e4 (0xe2058553) fmv.x.d a0, fa1 +core 0: 3 0x00000000800024e4 (0xe2058553) x10 0x41f0000000000000 +core 0: 0x00000000800024e8 (0xe20507d3) fmv.x.d a5, fa0 +core 0: 3 0x00000000800024e8 (0xe20507d3) x15 0x7ff8000000000000 +core 0: 0x00000000800024ec (0x29f01693) bseti a3, zero, 31 +core 0: 3 0x00000000800024ec (0x29f01693) x13 0x0000000080000000 +core 0: 0x00000000800024f0 (0xfff68693) addi a3, a3, -1 +core 0: 3 0x00000000800024f0 (0xfff68693) x13 0x000000007fffffff +core 0: 0x00000000800024f4 (0x02055e93) srli t4, a0, 32 +core 0: 3 0x00000000800024f4 (0x02055e93) x29 0x0000000041f00000 +core 0: 0x00000000800024f8 (0x00def733) and a4, t4, a3 +core 0: 3 0x00000000800024f8 (0x00def733) x14 0x0000000041f00000 +core 0: 0x00000000800024fc (0x0007071b) sext.w a4, a4 +core 0: 3 0x00000000800024fc (0x0007071b) x14 0x0000000041f00000 +core 0: 0x0000000080002500 (0x0005059b) sext.w a1, a0 +core 0: 3 0x0000000080002500 (0x0005059b) x11 0x0000000000000000 +core 0: 0x0000000080002504 (0x0207de13) srli t3, a5, 32 +core 0: 3 0x0000000080002504 (0x0207de13) x28 0x000000007ff80000 +core 0: 0x0000000080002508 (0x00de76b3) and a3, t3, a3 +core 0: 3 0x0000000080002508 (0x00de76b3) x13 0x000000007ff80000 +core 0: 0x000000008000250c (0x00e5e833) or a6, a1, a4 +core 0: 3 0x000000008000250c (0x00e5e833) x16 0x0000000041f00000 +core 0: 0x0000000080002510 (0x0006869b) sext.w a3, a3 +core 0: 3 0x0000000080002510 (0x0006869b) x13 0x000000007ff80000 +core 0: 0x0000000080002514 (0x0c080c63) beqz a6, pc + 216 +core 0: 3 0x0000000080002514 (0x0c080c63) +core 0: 0x0000000080002518 (0x7ff00837) lui a6, 0x7ff00 +core 0: 3 0x0000000080002518 (0x7ff00837) x16 0x000000007ff00000 +core 0: 0x000000008000251c (0xfff80813) addi a6, a6, -1 +core 0: 3 0x000000008000251c (0xfff80813) x16 0x000000007fefffff +core 0: 0x0000000080002520 (0x7ff008b7) lui a7, 0x7ff00 +core 0: 3 0x0000000080002520 (0x7ff008b7) x17 0x000000007ff00000 +core 0: 0x0000000080002524 (0x0cd86463) bltu a6, a3, pc + 200 +core 0: 3 0x0000000080002524 (0x0cd86463) +core 0: 0x00000000800025ec (0xf20787d3) fmv.d.x fa5, a5 +core 0: 3 0x00000000800025ec (0xf20787d3) f15 0x7ff8000000000000 +core 0: 0x00000000800025f0 (0xf2050753) fmv.d.x fa4, a0 +core 0: 3 0x00000000800025f0 (0xf2050753) f14 0x41f0000000000000 +core 0: 0x00000000800025f4 (0x12e7f7d3) fmul.d fa5, fa5, fa4 +core 0: 3 0x00000000800025f4 (0x12e7f7d3) f15 0x7ff8000000000000 +core 0: 0x00000000800025f8 (0x1af7f7d3) fdiv.d fa5, fa5, fa5 +core 0: 3 0x00000000800025f8 (0x1af7f7d3) f15 0x7ff8000000000000 +core 0: 0x00000000800025fc (0xe20787d3) fmv.x.d a5, fa5 +core 0: 3 0x00000000800025fc (0xe20787d3) x15 0x7ff8000000000000 +core 0: 0x0000000080002600 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080002600 (0xf2078553) f10 0x7ff8000000000000 +core 0: 0x0000000080002604 (0x00008067) ret +core 0: 3 0x0000000080002604 (0x00008067) +core 0: 0x0000000080002490 (0xf20007d3) fmv.d.x fa5, zero +core 0: 3 0x0000000080002490 (0xf20007d3) f15 0x0000000000000000 +core 0: 0x0000000080002494 (0x00813587) fld fa1, 8(sp) +core 0: 3 0x0000000080002494 (0x00813587) f11 0x41f0000000000000 mem 0x0000000080022af8 +core 0: 0x0000000080002498 (0xa2f5a7d3) feq.d a5, fa1, fa5 +core 0: 3 0x0000000080002498 (0xa2f5a7d3) x15 0x0000000000000000 +core 0: 0x000000008000249c (0x00078a63) beqz a5, pc + 20 +core 0: 3 0x000000008000249c (0x00078a63) +core 0: 0x00000000800024b0 (0x02813083) ld ra, 40(sp) +core 0: 3 0x00000000800024b0 (0x02813083) x1 0x0000000080002418 mem 0x0000000080022b18 +core 0: 0x00000000800024b4 (0x01813407) fld fs0, 24(sp) +core 0: 3 0x00000000800024b4 (0x01813407) f8 0x41f0000000000000 mem 0x0000000080022b08 +core 0: 0x00000000800024b8 (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800024b8 (0x03010113) x2 0x0000000080022b20 +core 0: 0x00000000800024bc (0x00008067) ret +core 0: 3 0x00000000800024bc (0x00008067) +core 0: 0x0000000080002418 (0xc22517d3) fcvt.l.d a5, fa0 +core 0: 3 0x0000000080002418 (0xc22517d3) c1_fflags 0x0000000000000011 x15 0x7fffffffffffffff +core 0: 0x000000008000241c (0x00840413) addi s0, s0, 8 +core 0: 3 0x000000008000241c (0x00840413) x8 0x0000000080002b80 +core 0: 0x0000000080002420 (0xfc849ee3) bne s1, s0, pc - 36 +core 0: 3 0x0000000080002420 (0xfc849ee3) +core 0: 0x0000000080002424 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002424 (0xc00027f3) x15 0x0000000000001a56 +core 0: 0x0000000080002428 (0x22813083) ld ra, 552(sp) +core 0: 3 0x0000000080002428 (0x22813083) x1 0x0000000080001cf4 mem 0x0000000080022d48 +core 0: 0x000000008000242c (0x22013403) ld s0, 544(sp) +core 0: 3 0x000000008000242c (0x22013403) x8 0x0000000080003168 mem 0x0000000080022d40 +core 0: 0x0000000080002430 (0x21813483) ld s1, 536(sp) +core 0: 3 0x0000000080002430 (0x21813483) x9 0x0000000000000000 mem 0x0000000080022d38 +core 0: 0x0000000080002434 (0x20813407) fld fs0, 520(sp) +core 0: 3 0x0000000080002434 (0x20813407) f8 0xffffffff00000000 mem 0x0000000080022d28 +core 0: 0x0000000080002438 (0x20013487) fld fs1, 512(sp) +core 0: 3 0x0000000080002438 (0x20013487) f9 0xffffffff00000000 mem 0x0000000080022d20 +core 0: 0x000000008000243c (0x1f813907) fld fs2, 504(sp) +core 0: 3 0x000000008000243c (0x1f813907) f18 0xffffffff00000000 mem 0x0000000080022d18 +core 0: 0x0000000080002440 (0x1f013987) fld fs3, 496(sp) +core 0: 3 0x0000000080002440 (0x1f013987) f19 0xffffffff00000000 mem 0x0000000080022d10 +core 0: 0x0000000080002444 (0x1e813a07) fld fs4, 488(sp) +core 0: 3 0x0000000080002444 (0x1e813a07) f20 0xffffffff00000000 mem 0x0000000080022d08 +core 0: 0x0000000080002448 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002448 (0x00000513) x10 0x0000000000000000 +core 0: 0x000000008000244c (0x23010113) addi sp, sp, 560 +core 0: 3 0x000000008000244c (0x23010113) x2 0x0000000080022d50 +core 0: 0x0000000080002450 (0x00008067) ret +core 0: 3 0x0000000080002450 (0x00008067) +core 0: 0x0000000080001cf4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cf4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001cf8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001cf8 (0x000a0493) x9 0x0000000080022d80 +core 0: 0x0000000080001cfc (0xec018413) addi s0, gp, -320 +core 0: 3 0x0000000080001cfc (0xec018413) x8 0x0000000080003078 +core 0: 0x0000000080001d00 (0xdd018913) addi s2, gp, -560 +core 0: 3 0x0000000080001d00 (0xdd018913) x18 0x0000000080002f88 +core 0: 0x0000000080001d04 (0xfb018993) addi s3, gp, -80 +core 0: 3 0x0000000080001d04 (0xfb018993) x19 0x0000000080003168 +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f88 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003078 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022d80 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003078 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022d80 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022d80 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000000001a56 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000041f00000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022d80 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022d80 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002f88 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d80 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d81 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d81 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d81 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d82 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d82 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d82 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d83 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d83 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d83 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d84 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d84 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d84 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d85 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d85 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d85 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d86 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d86 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d86 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d87 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d87 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d87 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d88 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d88 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d88 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d89 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d89 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d89 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8a 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022d80 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022d80 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002f88 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022d8b mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022d8b 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022d8b mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003078 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003080 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002f90 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022d8b +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f90 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003080 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022d8b +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003080 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022d8b +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022d8b +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022d8b +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022d8b +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022d8b +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002f90 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8b 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8c 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8d 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d8f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d8f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d8f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d90 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d90 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d90 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d91 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d91 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d91 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d92 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d92 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d92 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d93 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d93 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d93 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d94 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d94 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d94 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d95 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d95 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d95 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d96 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d96 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022d8b mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022d8b mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002f90 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022d96 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022d96 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022d96 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003080 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003088 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002f98 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022d96 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f98 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003088 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022d96 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003088 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022d96 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022d96 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022d96 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022d96 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022d96 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002f98 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d96 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d97 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d97 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d97 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d98 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d98 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d98 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d99 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d99 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d99 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9b 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9d 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022d9f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022d9f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022d9f 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da0 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022d96 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022d96 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022da1 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022da1 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022da1 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003088 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003090 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fa0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022da1 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003090 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022da1 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003090 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022da1 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022da1 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022da1 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022da1 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022da1 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fa0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da1 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da2 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da3 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da4 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da5 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da6 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da7 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da8 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022da9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022da9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022da9 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022daa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022daa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022daa 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dab +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dab +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dab 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dac +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dac +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022da1 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022da1 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022dac mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022dac 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022dac mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003090 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003098 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fa8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022dac +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003098 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022dac +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003098 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022dac +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022dac +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022dac +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022dac +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022dac +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fa8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dac 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dad +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dad +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dad 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dae +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dae +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dae 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022daf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022daf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022daf 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db0 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db1 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db2 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db3 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db5 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db6 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022dac mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022dac mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fa8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022db7 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022db7 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022db7 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003098 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030a0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fb0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022db7 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022db7 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030a0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022db7 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022db7 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022db7 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022db7 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022db7 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fb0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db7 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db8 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022db9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022db9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022db9 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dba +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dba +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dba 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dbb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dbb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dbb 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dbc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dbc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dbc 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dbd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dbd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dbd 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dbe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dbe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dbe 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dbf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dbf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dbf 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc0 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc1 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022db7 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022db7 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fb0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022dc2 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022dc2 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022dc2 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030a0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030a8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fb8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022dc2 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fb8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030a8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022dc2 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030a8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022dc2 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022dc2 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022dc2 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022dc2 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022dc2 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fb8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc2 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc3 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc4 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc5 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc6 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc7 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc8 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dc9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dc9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dc9 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dca +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dca +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dca 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dcb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dcb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dcb 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dcc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dcc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dcc 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dcd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dcd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022dc2 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022dc2 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fb8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022dcd mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022dcd 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022dcd mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030a8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030b0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fc0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022dcd +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022dcd +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030b0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022dcd +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022dcd +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022dcd +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022dcd +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022dcd +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fc0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dcd 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dce +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dce +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dce 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dcf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dcf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dcf 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd0 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd2 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd3 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd4 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd5 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd6 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd7 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022dcd mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022dcd mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fc0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022dd8 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022dd8 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022dd8 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030b0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030b8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fc8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022dd8 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fc8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030b8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022dd8 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030b8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022dd8 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022dd8 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022dd8 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022dd8 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022dd8 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fc8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd8 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dd9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dd9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dd9 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dda +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dda +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dda 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ddb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ddb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ddb 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ddc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ddc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ddc 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ddd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ddd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ddd 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dde +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dde +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dde 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ddf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ddf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ddf 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de0 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de1 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de2 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022dd8 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022dd8 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fc8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022de3 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022de3 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022de3 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030b8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030c0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fd0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022de3 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022de3 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030c0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022de3 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022de3 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022de3 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022de3 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022de3 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fd0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de3 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de4 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de5 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de6 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de7 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de8 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022de9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022de9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022de9 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dea +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dea +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dea 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022deb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022deb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022deb 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dec +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dec +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dec 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ded +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ded +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ded 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dee +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dee +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022de3 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022de3 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fd0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022dee mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022dee 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022dee mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030c0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030c8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fd8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022dee +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fd8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030c8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022dee +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030c8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022dee +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022dee +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022dee +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022dee +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022dee +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fd8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dee 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022def +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022def +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022def 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df0 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df3 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df5 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df6 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df7 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df8 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022df9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022df9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022dee mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022dee mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fd8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022df9 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022df9 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022df9 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030c8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030d0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fe0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022df9 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022df9 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030d0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022df9 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022df9 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022df9 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022df9 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022df9 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fe0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022df9 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dfa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dfa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dfa 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dfb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dfb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dfb 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dfc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dfc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dfc 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dfd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dfd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dfd 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dfe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dfe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dfe 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022dff +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022dff +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022dff 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e00 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e00 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e00 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e01 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e01 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e01 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e02 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e02 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e02 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e03 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e03 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e03 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e04 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e04 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022df9 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022df9 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fe0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e04 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e04 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e04 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030d0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030d8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002fe8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e04 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fe8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030d8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e04 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030d8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e04 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e04 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e04 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e04 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e04 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002fe8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e04 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e05 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e05 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e05 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e06 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e06 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e06 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e07 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e07 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e07 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e08 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e08 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e08 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e09 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e09 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e09 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0a 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0b 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0d 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0e 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e0f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e0f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e04 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e04 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002fe8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e0f mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e0f 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e0f mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030d8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030e0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002ff0 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e0f +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff0 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e0f +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030e0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e0f +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e0f +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e0f +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e0f +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e0f +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002ff0 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e0f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e0f 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e0f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e10 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e10 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e10 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e10 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e10 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e11 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e11 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e11 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e11 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e12 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e12 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e12 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e12 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e13 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e13 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e13 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e13 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e14 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e14 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e14 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e14 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e15 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e15 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e15 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e15 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e16 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e16 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e16 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e16 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e17 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e17 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e17 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e17 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e17 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e18 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e18 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e18 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e18 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e18 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e19 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e19 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e19 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e19 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e19 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e0f mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e0f mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ff0 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e1a mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e1a 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e1a mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030e0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030e8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080002ff8 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e1a +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ff8 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030e8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e1a +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030e8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e1a +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e1a +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e1a +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e1a +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e1a +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080002ff8 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1a 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1b 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1c 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1d 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e1f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e1f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e1f 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e1f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e20 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e20 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e20 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e20 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e21 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e21 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e21 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e21 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e22 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e22 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e22 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e22 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e22 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e23 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e23 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e23 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e23 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e23 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e24 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e24 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e24 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e24 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e24 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e25 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e25 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e1a mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e1a mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080002ff8 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e25 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e25 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e25 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030e8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030f0 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003000 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e25 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003000 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f0 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e25 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030f0 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e25 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e25 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e25 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e25 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e25 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003000 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e25 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e25 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e25 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e26 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e26 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e26 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e26 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e26 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e27 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e27 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e27 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e27 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e28 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e28 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e28 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e28 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e29 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e29 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e29 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e29 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2a 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2b 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2c 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2d 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2e 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e2f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e2f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e2f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e2f 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e2f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e30 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e30 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e25 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e25 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003000 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e30 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e30 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e30 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030f0 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x00000000800030f8 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003008 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e30 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003008 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x00000000800030f8 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e30 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x00000000800030f8 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e30 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e30 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e30 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e30 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e30 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003008 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e30 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e30 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e30 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e31 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e31 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e31 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e31 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e31 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e32 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e32 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e32 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e32 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e33 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e33 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e33 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e33 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e34 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e34 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e34 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e34 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e35 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e35 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e35 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e35 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e36 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e36 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e36 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e36 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e37 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e37 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e37 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e37 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e38 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e38 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e38 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e38 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e38 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e39 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e39 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e39 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e39 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e39 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3a 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e30 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e30 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003008 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e3b mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e3b 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e3b mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x00000000800030f8 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003100 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003010 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e3b +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003010 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003100 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e3b +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003100 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e3b +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e3b +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e3b +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e3b +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e3b +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003010 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3b 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3c 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3d 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3e 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e3f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e3f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e3f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e3f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e40 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e40 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e40 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e40 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e41 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e41 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e41 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e41 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e42 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e42 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e42 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e42 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e43 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e43 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e43 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e43 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e43 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e44 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e44 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e44 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e44 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e44 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e45 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e45 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e45 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e45 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e45 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e46 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e46 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e3b mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e3b mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003010 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e46 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e46 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e46 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003100 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003108 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003018 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e46 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003018 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003108 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e46 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003108 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e46 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e46 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e46 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e46 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e46 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003018 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e46 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e46 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e46 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e47 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e47 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e47 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e47 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e47 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e48 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e48 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e48 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e48 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e49 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e49 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e49 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e49 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4b 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4c 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4d 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e4f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e4f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e4f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e4f 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e4f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e50 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e50 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e50 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e50 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e50 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e51 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e51 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e46 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e46 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003018 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e51 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e51 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e51 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003108 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003110 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003020 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e51 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003020 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003110 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e51 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003110 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e51 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e51 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e51 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e51 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e51 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003020 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e51 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e51 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e51 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e52 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e52 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e52 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e52 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e52 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e53 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e53 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e53 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e53 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e54 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e54 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e54 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e54 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e55 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e55 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e55 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e55 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e56 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e56 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e56 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e56 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e57 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e57 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e57 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e57 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e58 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e58 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e58 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e58 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e59 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e59 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e59 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e59 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e59 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5a 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5b 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e51 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e51 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003020 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e5c mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e5c 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e5c mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003110 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003118 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003028 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e5c +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003028 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003118 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e5c +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003118 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e5c +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e5c +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e5c +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e5c +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e5c +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003028 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5c 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5d 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5e 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e5f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e5f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e5f 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e5f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e60 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e60 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e60 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e60 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e61 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e61 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e61 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e61 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e62 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e62 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e62 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e62 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e63 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e63 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e63 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e63 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e64 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e64 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e64 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e64 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e64 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e65 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e65 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e65 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e65 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e65 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e66 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e66 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e66 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e66 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e66 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e67 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e67 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e5c mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e5c mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003028 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e67 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e67 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e67 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003118 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003120 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003030 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e67 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003030 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003120 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e67 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003120 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e67 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e67 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e67 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e67 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e67 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003030 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e67 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e67 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e67 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e68 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e68 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e68 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e68 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e68 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e69 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e69 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e69 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e69 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6a 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6b 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6c 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6d 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6e 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e6f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e6f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e6f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e6f 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e6f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e70 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e70 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e70 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e70 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e70 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e71 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e71 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e71 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e71 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e71 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e72 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e72 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e67 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e67 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003030 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e72 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e72 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e72 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003120 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003128 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003038 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e72 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003038 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003128 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e72 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003128 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e72 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e72 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e72 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e72 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e72 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003038 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e72 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e72 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e72 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e73 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e73 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e73 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e73 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e73 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e74 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e74 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e74 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e74 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e75 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e75 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e75 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e75 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e76 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e76 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e76 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e76 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e77 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e77 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e77 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e77 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e78 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e78 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e78 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e78 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e79 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e79 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e79 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e79 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7a 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7b 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7c 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e72 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e72 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003038 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e7d mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e7d 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e7d mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003128 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003130 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003040 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e7d +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003040 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003130 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e7d +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003130 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e7d +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e7d +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e7d +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e7d +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e7d +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003040 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7d 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7e 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e7f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e7f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e7f 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e7f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e80 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e80 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e80 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e80 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e81 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e81 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e81 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e81 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e82 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e82 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e82 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e82 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e83 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e83 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e83 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e83 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e84 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e84 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e84 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e84 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e85 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e85 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e85 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e85 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e85 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e86 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e86 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e86 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e86 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e86 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e87 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e87 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e87 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e87 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e87 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e88 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e88 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e7d mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e7d mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003040 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e88 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e88 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e88 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003130 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003138 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003048 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e88 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003048 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003138 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e88 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003138 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e88 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e88 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e88 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e88 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e88 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003048 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e88 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e88 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e88 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e89 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e89 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e89 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e89 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e89 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8a 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8b 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8c 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8d 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8e 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e8f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e8f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e8f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e8f 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e8f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e90 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e90 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e90 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e90 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e90 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e91 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e91 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e91 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e91 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e91 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e92 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e92 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e92 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e92 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e92 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e93 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e93 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e88 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e88 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003048 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e93 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e93 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e93 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003138 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003140 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003050 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e93 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003050 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003140 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e93 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003140 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e93 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e93 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e93 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e93 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e93 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003050 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e93 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e93 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e93 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e94 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e94 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e94 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e94 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e94 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e95 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e95 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e95 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e95 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e95 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e96 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e96 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e96 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e96 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e96 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e97 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e97 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e97 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e97 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e97 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e98 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e98 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e98 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e98 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e98 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e99 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e99 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e99 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e99 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e99 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9a +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9a +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9a mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9a 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9a mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9b +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9b +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9b mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9b 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9b mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9c +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9c +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9c mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9c 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9c mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9d +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9d +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9d mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9d 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9d mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9e +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9e +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e93 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e93 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003050 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022e9e mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022e9e 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022e9e mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003140 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003148 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003058 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022e9e +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003058 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003148 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022e9e +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003148 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022e9e +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022e9e +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022e9e +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022e9e +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022e9e +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003058 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9e mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9e 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9e mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022e9f +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022e9f +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022e9f mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022e9f 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022e9f mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea0 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea1 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea3 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea4 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea5 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea6 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea7 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea8 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ea9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ea9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022e9e mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022e9e mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003058 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ea9 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ea9 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ea9 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003148 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003150 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003060 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ea9 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003060 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003150 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ea9 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003150 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022ea9 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ea9 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022ea9 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022ea9 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022ea9 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003060 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ea9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ea9 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ea9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eaa +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eaa +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eaa mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eaa 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eaa mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eab +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eab +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eab mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eab 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eab mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eac +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eac +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eac mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eac 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eac mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ead +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ead +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ead mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ead 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ead mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eae +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eae +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eae mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eae 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eae mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eaf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eaf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eaf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eaf 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eaf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb0 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb1 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb2 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb3 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ea9 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ea9 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003060 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022eb4 mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022eb4 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022eb4 mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003150 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003158 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003068 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022eb4 +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003068 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003158 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022eb4 +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003158 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022eb4 +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022eb4 +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022eb4 +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022eb4 +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022eb4 +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003068 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb4 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb5 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb6 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb7 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb8 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eb9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eb9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eb9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eb9 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eb9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eba +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eba +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022eba mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022eba 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022eba mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ebb +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ebb +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ebb mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ebb 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ebb mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ebc +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ebc +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ebc mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ebc 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ebc mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ebd +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ebd +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ebd mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ebd 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ebd mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ebe +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ebe +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ebe mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ebe 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ebe mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ebf +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ebf +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022eb4 mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022eb4 mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003068 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022ebf mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022ebf 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022ebf mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003158 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003160 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003070 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022ebf +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d08 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d08 (0x00093683) x13 0x0000000000000000 mem 0x0000000080003070 +core 0: 0x0000000080001d0c (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d0c (0x00043603) x12 0x0000000000000000 mem 0x0000000080003160 +core 0: 0x0000000080001d10 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d10 (0x00048513) x10 0x0000000080022ebf +core 0: 0x0000000080001d14 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d14 (0x00001597) x11 0x0000000080002d14 +core 0: 0x0000000080001d18 (0x24c58593) addi a1, a1, 588 +core 0: 3 0x0000000080001d18 (0x24c58593) x11 0x0000000080002f60 +core 0: 0x0000000080001d1c (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001d1c (0xd51ff0ef) x1 0x0000000080001d20 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: 0x0000000080001a6c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a6c (0xfa010113) x2 0x0000000080022cf0 +core 0: 0x0000000080001a70 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a70 (0x03010313) x6 0x0000000080022d20 +core 0: 0x0000000080001a74 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a74 (0x02813023) mem 0x0000000080022d10 0x0000000080003160 +core 0: 0x0000000080001a78 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a78 (0x00a13423) mem 0x0000000080022cf8 0x0000000080022ebf +core 0: 0x0000000080001a7c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a7c (0x02c13823) mem 0x0000000080022d20 0x0000000000000000 +core 0: 0x0000000080001a80 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a80 (0x02d13c23) mem 0x0000000080022d28 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a84 (0x00050413) x8 0x0000000080022ebf +core 0: 0x0000000080001a88 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a88 (0x00058613) x12 0x0000000080002f60 +core 0: 0x0000000080001a8c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a8c (0x00000517) x10 0x0000000080001a8c +core 0: 0x0000000080001a90 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a90 (0x97c50513) x10 0x0000000080001408 +core 0: 0x0000000080001a94 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a94 (0x00810593) x11 0x0000000080022cf8 +core 0: 0x0000000080001a98 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a98 (0x00030693) x13 0x0000000080022d20 +core 0: 0x0000000080001a9c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a9c (0x02113423) mem 0x0000000080022d18 0x0000000080001d20 +core 0: 0x0000000080001aa0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001aa0 (0x04f13423) mem 0x0000000080022d38 0x0000000080022ebf +core 0: 0x0000000080001aa4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001aa4 (0x04e13023) mem 0x0000000080022d30 0x0000000000000000 +core 0: 0x0000000080001aa8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001aa8 (0x05013823) mem 0x0000000080022d40 0x000000007fefffff +core 0: 0x0000000080001aac (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001aac (0x05113c23) mem 0x0000000080022d48 0x000000007ff00000 +core 0: 0x0000000080001ab0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ab0 (0x00613c23) mem 0x0000000080022d08 0x0000000080022d20 +core 0: 0x0000000080001ab4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ab4 (0xd7cff0ef) x1 0x0000000080001ab8 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: 0x0000000080001030 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001030 (0xea010113) x2 0x0000000080022b90 +core 0: 0x0000000080001034 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001034 (0x14813823) mem 0x0000000080022ce0 0x0000000080022ebf +core 0: 0x0000000080001038 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001038 (0x14913423) mem 0x0000000080022cd8 0x0000000080022ebf +core 0: 0x000000008000103c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000103c (0x15213023) mem 0x0000000080022cd0 0x0000000080003070 +core 0: 0x0000000080001040 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001040 (0x13413823) mem 0x0000000080022cc0 0x0000000080022d80 +core 0: 0x0000000080001044 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001044 (0x13513423) mem 0x0000000080022cb8 0x0000000000000000 +core 0: 0x0000000080001048 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001048 (0x13613023) mem 0x0000000080022cb0 0x0000000000000000 +core 0: 0x000000008000104c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000104c (0x11713c23) mem 0x0000000080022ca8 0x0000000000000000 +core 0: 0x0000000080001050 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001050 (0x14113c23) mem 0x0000000080022ce8 0x0000000080001ab8 +core 0: 0x0000000080001054 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001054 (0x13313c23) mem 0x0000000080022cc8 0x0000000080003168 +core 0: 0x0000000080001058 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001058 (0x11813823) mem 0x0000000080022ca0 0x0000000000000000 +core 0: 0x000000008000105c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000105c (0x11913423) mem 0x0000000080022c98 0x0000000000000000 +core 0: 0x0000000080001060 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001060 (0x11a13023) mem 0x0000000080022c90 0x0000000000000000 +core 0: 0x0000000080001064 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001064 (0x00050493) x9 0x0000000080001408 +core 0: 0x0000000080001068 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001068 (0x00060413) x8 0x0000000080002f60 +core 0: 0x000000008000106c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000106c (0x00068a93) x21 0x0000000080022d20 +core 0: 0x0000000080001070 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001070 (0x00058913) x18 0x0000000080022cf8 +core 0: 0x0000000080001074 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001074 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001078 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001078 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000107c (0x9c818b13) addi s6, gp, -1592 +core 0: 3 0x000000008000107c (0x9c818b13) x22 0x0000000080002b80 +core 0: 0x0000000080001080 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001080 (0x0140006f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f60 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002f61 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f61 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f61 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f62 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc0 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe750 mem 0x0000000080002cc0 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x00000000800012d0 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x00000000800012d0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012d0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022d20 +core 0: 0x00000000800012d4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012d4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012d8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012d8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012dc (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012dc (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012e0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012e0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012e4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012e4 (0x008a8a93) x21 0x0000000080022d28 +core 0: 0x00000000800012e8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012e8 (0x0a0c0c63) +core 0: 0x00000000800013a0 (0x00002c17) auipc s8, 0x2 +core 0: 3 0x00000000800013a0 (0x00002c17) x24 0x00000000800033a0 +core 0: 0x00000000800013a4 (0x938c0c13) addi s8, s8, -1736 +core 0: 3 0x00000000800013a4 (0x938c0c13) x24 0x0000000080002cd8 +core 0: 0x00000000800013a8 (0x02800513) li a0, 40 +core 0: 3 0x00000000800013a8 (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013ac (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x00000000800013ac (0xf40786e3) +core 0: 0x00000000800012f8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012f8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ebf mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ebf 0x28 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ebf mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec0 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec0 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002cd9 +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cd9 +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec0 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec0 0x6e +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec0 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec1 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec1 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002cda +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cda +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec1 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec1 0x75 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec1 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec2 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec2 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdb +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdb +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec2 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec2 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec2 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec3 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec3 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002cdc +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdc +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec3 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec3 0x6c +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec3 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec4 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec4 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002cdd +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cdd +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x00000000800012fc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012fc (0x0009c663) +core 0: 0x0000000080001308 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001308 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000130c (0x000480e7) jalr s1 +core 0: 3 0x000000008000130c (0x000480e7) x1 0x0000000080001310 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec4 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec4 0x29 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec4 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec5 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec5 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001310 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001310 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002cde +core 0: 0x0000000080001314 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001314 (0x001c0c13) x24 0x0000000080002cde +core 0: 0x0000000080001318 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x0000000080001318 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x000000008000131c (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x000000008000131c (0xfe0510e3) +core 0: 0x0000000080001320 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001320 (0xd7905ae3) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f62 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f63 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec5 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec5 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec5 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec6 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec6 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000003d mem 0x0000000080002f63 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f64 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec6 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec6 0x3d +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec6 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec7 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec7 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002f64 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f65 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec7 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec7 0x20 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec7 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec8 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec8 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002f65 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x000000008000109c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000109c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002f66 +core 0: 0x00000000800010a0 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010a0 (0x00140c13) x24 0x0000000080002f66 +core 0: 0x00000000800010a4 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010a4 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010a8 (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010a8 (0x000c0713) x14 0x0000000080002f66 +core 0: 0x00000000800010ac (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010ac (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010b0 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010b0 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010b8 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010b8 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010bc (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010bc (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010c0 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010c0 (0x00170413) x8 0x0000000080002f67 +core 0: 0x00000000800010c4 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x00000000800010c4 (0x06fbe463) +core 0: 0x00000000800010c8 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x00000000800010c8 (0x2167c7b3) x15 0x0000000080002cc8 +core 0: 0x00000000800010cc (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010cc (0x0007a783) x15 0xffffffffffffe7f4 mem 0x0000000080002cc8 +core 0: 0x00000000800010d0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010d0 (0x016787b3) x15 0x0000000080001374 +core 0: 0x00000000800010d4 (0x00078067) jr a5 +core 0: 3 0x00000000800010d4 (0x00078067) +core 0: 0x0000000080001374 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001374 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001378 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001378 (0xf3dff06f) +core 0: 0x00000000800012b4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012b4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012b8 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8793) x15 0x0000000080022d30 +core 0: 0x00000000800012bc (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x00000000800012bc (0xf2c744e3) +core 0: 0x00000000800012c0 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x00000000800012c0 (0xf20612e3) +core 0: 0x00000000800012c4 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x00000000800012c4 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022d28 +core 0: 0x00000000800012c8 (0x00078a93) mv s5, a5 +core 0: 3 0x00000000800012c8 (0x00078a93) x21 0x0000000080022d30 +core 0: 0x00000000800012cc (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012cc (0xf21ff06f) +core 0: 0x00000000800011ec (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011ec (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011f0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011f0 (0x00410613) x12 0x0000000080022b94 +core 0: 0x00000000800011f4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011f4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011f8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011f8 (0x00b12023) mem 0x0000000080022b90 0x00000000 +core 0: 0x00000000800011fc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011fc (0x16d76463) +core 0: 0x0000000080001364 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001364 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001368 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001368 (0xeb5ff06f) +core 0: 0x000000008000121c (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x000000008000121c (0x0397d263) +core 0: 0x0000000080001240 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001240 (0x202c4d33) x26 0x0000000080022b90 +core 0: 0x0000000080001244 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001244 (0xffc10c93) x25 0x0000000080022b8c +core 0: 0x0000000080001248 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001248 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000124c (0x02700993) li s3, 39 +core 0: 3 0x000000008000124c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001250 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001250 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022b90 +core 0: 0x0000000080001254 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001254 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x0000000080001258 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001258 (0xffcd0d13) x26 0x0000000080022b8c +core 0: 0x000000008000125c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000125c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001260 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001260 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001264 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001264 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001268 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001268 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000126c (0x000480e7) jalr s1 +core 0: 3 0x000000008000126c (0x000480e7) x1 0x0000000080001270 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec8 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec8 0x30 +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec8 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022ec9 +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022ec9 +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001270 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001270 (0xff9d10e3) +core 0: 0x0000000080001274 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001274 (0xe21ff06f) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x000000000000000a mem 0x0000000080002f67 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x0000000080001088 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001088 (0x00090593) x11 0x0000000080022cf8 +core 0: 0x000000008000108c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000108c (0x00140413) x8 0x0000000080002f68 +core 0: 0x0000000080001090 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001090 (0x000480e7) x1 0x0000000080001094 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: 0x0000000080001408 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001408 (0x0005b783) x15 0x0000000080022ec9 mem 0x0000000080022cf8 +core 0: 0x000000008000140c (0x00a78023) sb a0, 0(a5) +core 0: 3 0x000000008000140c (0x00a78023) mem 0x0000000080022ec9 0x0a +core 0: 0x0000000080001410 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001410 (0x0005b783) x15 0x0000000080022ec9 mem 0x0000000080022cf8 +core 0: 0x0000000080001414 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001414 (0x00178793) x15 0x0000000080022eca +core 0: 0x0000000080001418 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x0000000080001418 (0x00f5b023) mem 0x0000000080022cf8 0x0000000080022eca +core 0: 0x000000008000141c (0x00008067) ret +core 0: 3 0x000000008000141c (0x00008067) +core 0: 0x0000000080001094 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001094 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001098 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001098 (0xff4516e3) +core 0: 0x0000000080001084 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001084 (0x04050a63) +core 0: 0x00000000800010d8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010d8 (0x15813083) x1 0x0000000080001ab8 mem 0x0000000080022ce8 +core 0: 0x00000000800010dc (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010dc (0x15013403) x8 0x0000000080022ebf mem 0x0000000080022ce0 +core 0: 0x00000000800010e0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010e0 (0x14813483) x9 0x0000000080022ebf mem 0x0000000080022cd8 +core 0: 0x00000000800010e4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010e4 (0x14013903) x18 0x0000000080003070 mem 0x0000000080022cd0 +core 0: 0x00000000800010e8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010e8 (0x13813983) x19 0x0000000080003168 mem 0x0000000080022cc8 +core 0: 0x00000000800010ec (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010ec (0x13013a03) x20 0x0000000080022d80 mem 0x0000000080022cc0 +core 0: 0x00000000800010f0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010f0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022cb8 +core 0: 0x00000000800010f4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010f4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022cb0 +core 0: 0x00000000800010f8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010f8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022ca8 +core 0: 0x00000000800010fc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010fc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022ca0 +core 0: 0x0000000080001100 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001100 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022c98 +core 0: 0x0000000080001104 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001104 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022c90 +core 0: 0x0000000080001108 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001108 (0x16010113) x2 0x0000000080022cf0 +core 0: 0x000000008000110c (0x00008067) ret +core 0: 3 0x000000008000110c (0x00008067) +core 0: 0x0000000080001ab8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ab8 (0x00813783) x15 0x0000000080022eca mem 0x0000000080022cf8 +core 0: 0x0000000080001abc (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001abc (0x00078023) mem 0x0000000080022eca 0x00 +core 0: 0x0000000080001ac0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001ac0 (0x00813503) x10 0x0000000080022eca mem 0x0000000080022cf8 +core 0: 0x0000000080001ac4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001ac4 (0x02813083) x1 0x0000000080001d20 mem 0x0000000080022d18 +core 0: 0x0000000080001ac8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001ac8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001acc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001acc (0x02013403) x8 0x0000000080003160 mem 0x0000000080022d10 +core 0: 0x0000000080001ad0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001ad0 (0x06010113) x2 0x0000000080022d50 +core 0: 0x0000000080001ad4 (0x00008067) ret +core 0: 3 0x0000000080001ad4 (0x00008067) +core 0: 0x0000000080001d20 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d20 (0x00840413) x8 0x0000000080003168 +core 0: 0x0000000080001d24 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d24 (0x00890913) x18 0x0000000080003078 +core 0: 0x0000000080001d28 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d28 (0x00a484b3) x9 0x0000000080022eca +core 0: 0x0000000080001d2c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d2c (0xfd341ee3) +core 0: 0x0000000080001d30 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d30 (0x009a0663) +core 0: 0x0000000080001d34 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d34 (0x000a0513) x10 0x0000000080022d80 +core 0: 0x0000000080001d38 (0xc09ff0ef) jal pc - 0x3f8 +core 0: 3 0x0000000080001d38 (0xc09ff0ef) x1 0x0000000080001d3c 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: 0x0000000080001940 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001940 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022d80 +core 0: 0x0000000080001944 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001944 (0xf9010113) x2 0x0000000080022ce0 +core 0: 0x0000000080001948 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001948 (0x03f10693) x13 0x0000000080022d1f +core 0: 0x000000008000194c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000194c (0xfc06f693) x13 0x0000000080022d00 +core 0: 0x0000000080001950 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001950 (0x00078c63) +core 0: 0x0000000080001954 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001954 (0x00050793) x15 0x0000000080022d80 +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d81 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d81 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d82 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d82 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d83 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d83 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d84 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d84 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d85 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d85 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d86 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d86 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d87 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d87 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d88 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d88 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d89 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d89 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d8a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d8b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d8c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d8d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d8e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d8f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d8f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d90 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d90 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d91 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d91 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d92 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d92 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d93 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d93 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d94 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d94 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d95 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d95 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d96 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d96 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d97 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d97 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d98 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d98 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d99 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d99 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d9a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d9b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d9c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d9d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d9e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d9f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022d9f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022da0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022da1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022da2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022da3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022da4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022da5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022da6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022da8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022da9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022daa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022daa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dab +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dab +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dac +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dac +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dad +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dad +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dae +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dae +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022daf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022daf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022db0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022db1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022db2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022db3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022db4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022db5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022db6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022db7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022db8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022db9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022db9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dba +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dba +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dbb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dbb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dbc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dbc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dbd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dbd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dbe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dbe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dbf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dbf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dc0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dc1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dc2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dc3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dc4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dc7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dc8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dc9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dc9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dca +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dca +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dcb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dcb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dcc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dcc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dcd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dcd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dce +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dce +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dcf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dcf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dd2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dd4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dd6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dd7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dd8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dd9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dd9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dda +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dda +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ddb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ddb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ddc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ddc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ddd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ddd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dde +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dde +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ddf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ddf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022de1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022de2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022de3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022de4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022de5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022de8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022de9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dea +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dea +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022deb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022deb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dec +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dec +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ded +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ded +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dee +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dee +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022def +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022def +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022df0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022df3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022df4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022df5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022df6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022df7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022df8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022df9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022df9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dfa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dfa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dfb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dfb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dfc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dfc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dfd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dfd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dfe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dfe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dff +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022dff +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e00 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e00 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e01 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e01 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e02 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e02 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e03 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e03 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e04 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e04 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e05 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e05 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e06 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e06 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e07 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e07 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e08 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e08 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e09 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e09 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e0a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e0b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e0c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e0d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e0e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e0f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e0f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e10 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e10 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e11 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e11 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e12 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e12 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e13 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e13 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e14 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e14 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e15 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e15 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e16 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e16 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e17 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e17 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e18 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e18 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e19 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e19 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e1a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e1b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e1c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e1d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e1e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e1f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e1f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e20 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e20 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e21 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e21 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e22 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e22 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e23 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e23 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e24 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e24 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e25 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e25 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e26 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e26 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e27 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e27 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e28 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e28 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e29 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e29 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e2a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e2b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e2c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e2d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e2e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e2f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e2f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e30 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e30 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e31 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e31 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e32 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e32 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e33 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e33 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e34 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e34 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e35 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e35 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e36 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e36 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e37 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e37 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e38 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e38 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e39 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e39 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e3a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e3b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e3c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e3d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e3e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e3f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e3f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e40 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e40 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e41 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e41 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e42 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e42 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e43 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e43 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e44 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e44 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e45 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e45 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e46 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e46 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e47 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e47 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e48 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e48 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e49 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e49 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e4a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e4b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e4c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e4d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e4e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e4f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e4f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e50 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e50 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e51 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e51 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e52 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e52 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e53 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e53 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e54 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e54 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e55 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e55 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e56 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e56 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e57 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e57 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e58 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e58 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e59 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e59 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e5a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e5b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e5c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e5d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e5e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e5f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e5f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e60 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e60 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e61 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e61 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e62 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e62 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e63 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e63 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e64 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e64 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e65 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e65 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e66 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e66 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e67 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e67 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e68 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e68 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e69 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e69 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e6a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e6b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e6c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e6d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e6e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e6f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e6f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e70 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e70 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e71 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e71 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e72 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e72 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e73 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e73 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e74 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e74 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e75 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e75 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e76 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e76 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e77 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e77 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e78 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e78 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e79 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e79 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e7a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e7b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e7c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e7d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e7e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e7f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e7f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e80 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e80 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e81 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e81 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e82 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e82 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e83 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e83 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e84 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e84 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e85 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e85 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e86 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e86 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e87 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e87 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e88 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e88 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e89 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e89 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e8a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e8b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e8c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e8d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e8e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e8f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e8f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e90 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e90 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e91 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e91 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e92 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e92 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e93 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e93 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e94 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e94 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e95 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e95 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e96 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e96 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e97 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e97 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e98 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e98 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e99 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e99 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e9a +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9a +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e9b +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9b +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e9c +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9c +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e9d +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9d +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022e9e +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9e +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e9f +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022e9f +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ea0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ea1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ea2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ea3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ea4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ea5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ea6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ea7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ea8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ea9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ea9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022eaa +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eaa +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022eab +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eab +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022eac +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eac +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ead +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ead +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022eae +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eae +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022eaf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eaf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022eb0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022eb1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022eb2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022eb3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022eb4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022eb5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022eb6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022eb7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022eb8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022eb9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eb9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022eba +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eba +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ebb +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ebb +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ebc +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ebc +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ebd +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ebd +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ebe +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ebe +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ebf +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ebf +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ec0 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec0 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ec1 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec1 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ec2 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec2 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ec3 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec3 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ec4 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec4 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ec5 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec5 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ec6 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec6 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ec7 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec7 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ec8 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec8 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ec9 +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022ec9 +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001958 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001958 (0x0017c703) x14 0x0000000000000000 mem 0x0000000080022eca +core 0: 0x000000008000195c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000195c (0x00178793) x15 0x0000000080022eca +core 0: 0x0000000080001960 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001960 (0xfe071ce3) +core 0: 0x0000000080001964 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001964 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001968 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001968 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000196c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000196c (0x00e6b023) mem 0x0000000080022d00 0x0000000000000040 +core 0: 0x0000000080001970 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001970 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001974 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001974 (0x00e6b423) mem 0x0000000080022d08 0x0000000000000001 +core 0: 0x0000000080001978 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001978 (0x00a6b823) mem 0x0000000080022d10 0x0000000080022d80 +core 0: 0x000000008000197c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000197c (0x00f6bc23) mem 0x0000000080022d18 0x000000000000014a +core 0: 0x0000000080001980 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001980 (0x0330000f) +core 0: 0x0000000080001984 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001984 (0xbfffe717) x14 0x000000003ffff984 +core 0: 0x0000000080001988 (0x6bc70713) addi a4, a4, 1724 +core 0: 3 0x0000000080001988 (0x6bc70713) x14 0x0000000040000040 +core 0: 0x000000008000198c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000198c (0xbfffe797) x15 0x000000003ffff98c +core 0: 0x0000000080001990 (0x66d7ba23) sd a3, 1652(a5) +core 0: 3 0x0000000080001990 (0x66d7ba23) mem 0x0000000040000000 0x0000000080022d00 +core 0: 0x0000000080001994 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001994 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001998 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001998 (0xfe078ee3) +core 0: 0x000000008000199c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000199c (0xbfffe797) x15 0x000000003ffff99c +core 0: 0x00000000800019a0 (0x6a07b223) sd zero, 1700(a5) +core 0: 3 0x00000000800019a0 (0x6a07b223) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x00000000800019a4 (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019a4 (0x0330000f) +core 0: 0x00000000800019a8 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x00000000800019a8 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022d00 +core 0: 0x00000000800019ac (0x07010113) addi sp, sp, 112 +core 0: 3 0x00000000800019ac (0x07010113) x2 0x0000000080022d50 +core 0: 0x00000000800019b0 (0x00008067) ret +core 0: 3 0x00000000800019b0 (0x00008067) +core 0: 0x0000000080001d3c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d3c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d40 (0xbbdff0ef) jal pc - 0x444 +core 0: 3 0x0000000080001d40 (0xbbdff0ef) x1 0x0000000080001d44 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) +core 0: 0x00000000800018fc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018fc (0x00151793) x15 0x0000000000000000 +core 0: 0x0000000080001900 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x0000000080001900 (0x0017e793) x15 0x0000000000000001 +core 0: 0x0000000080001904 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001904 (0xbfffe717) x14 0x000000003ffff904 +core 0: 0x0000000080001908 (0x6ef73e23) sd a5, 1788(a4) +core 0: 3 0x0000000080001908 (0x6ef73e23) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x000000008000190c (0x0000006f) j pc + 0x0 +core 0: 3 0x000000008000190c (0x0000006f) diff --git a/traces/without_zfhmin.txt b/traces/without_zfhmin.txt index 44db04a..e3cbd60 100644 --- a/traces/without_zfhmin.txt +++ b/traces/without_zfhmin.txt @@ -163,14 +163,14 @@ 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: 0x0000000080000144 (0xc6018193) addi gp, gp, -928 +core 0: 3 0x0000000080000144 (0xc6018193) x3 0x0000000080002da0 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: 0x000000008000014c (0xa7720213) addi tp, tp, -1417 +core 0: 3 0x000000008000014c (0xa7720213) x4 0x0000000080002bbf core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 -core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002bc0 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002b80 core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 core 0: 0x0000000080000158 (0x00100593) li a1, 1 @@ -182,3501 +182,31572 @@ 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: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022b80 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: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002b80 +core 0: 0x0000000080000174 (0x2610106f) j pc + 0x1a60 +core 0: 3 0x0000000080000174 (0x2610106f) 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: 0x0000000080001bd4 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bd4 (0xbd010113) x2 0x0000000080022750 +core 0: 0x0000000080001bd8 (0xde018793) addi a5, gp, -544 +core 0: 3 0x0000000080001bd8 (0xde018793) x15 0x0000000080002b80 +core 0: 0x0000000080001bdc (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bdc (0x42813023) mem 0x0000000080022b70 0x0000000000000000 +core 0: 0x0000000080001be0 (0xde018413) addi s0, gp, -544 +core 0: 3 0x0000000080001be0 (0xde018413) x8 0x0000000080002b80 +core 0: 0x0000000080001be4 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001be4 (0x40913c23) mem 0x0000000080022b68 0x0000000000000000 +core 0: 0x0000000080001be8 (0x40f404b3) sub s1, s0, a5 +core 0: 3 0x0000000080001be8 (0x40f404b3) x9 0x0000000000000000 +core 0: 0x0000000080001bec (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001bec (0x41213823) mem 0x0000000080022b60 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001bf0 (0x41313423) mem 0x0000000080022b58 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x00050913) mv s2, a0 +core 0: 3 0x0000000080001bf4 (0x00050913) x18 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x00058993) mv s3, a1 +core 0: 3 0x0000000080001bf8 (0x00058993) x19 0x0000000000000001 +core 0: 0x0000000080001bfc (0x00020513) mv a0, tp +core 0: 3 0x0000000080001bfc (0x00020513) x10 0x0000000080002b80 +core 0: 0x0000000080001c00 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001c00 (0x00078593) x11 0x0000000080002b80 +core 0: 0x0000000080001c04 (0x00048613) mv a2, s1 +core 0: 3 0x0000000080001c04 (0x00048613) x12 0x0000000000000000 +core 0: 0x0000000080001c08 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c08 (0x42113423) mem 0x0000000080022b78 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c0c (0x41413023) mem 0x0000000080022b50 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: 3 0x0000000080001c10 (0x3f513c23) mem 0x0000000080022b48 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00020a93) mv s5, tp +core 0: 3 0x0000000080001c14 (0x00020a93) x21 0x0000000080002b80 +core 0: 0x0000000080001c18 (0xe91ff0ef) jal pc - 0x170 +core 0: 3 0x0000000080001c18 (0xe91ff0ef) x1 0x0000000080001c1c +core 0: >>>> memcpy +core 0: 0x0000000080001aa8 (0x00c5e7b3) or a5, a1, a2 +core 0: 3 0x0000000080001aa8 (0x00c5e7b3) x15 0x0000000080002b80 +core 0: 0x0000000080001aac (0x00f567b3) or a5, a0, a5 +core 0: 3 0x0000000080001aac (0x00f567b3) x15 0x0000000080002b80 +core 0: 0x0000000080001ab0 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001ab0 (0x0077f793) x15 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00058393) mv t2, a1 +core 0: 3 0x0000000080001ab4 (0x00058393) x7 0x0000000080002b80 +core 0: 0x0000000080001ab8 (0x00c506b3) add a3, a0, a2 +core 0: 3 0x0000000080001ab8 (0x00c506b3) x13 0x0000000080002b80 +core 0: 0x0000000080001abc (0x02078463) beqz a5, pc + 40 +core 0: 3 0x0000000080001abc (0x02078463) +core 0: 0x0000000080001ae4 (0x04050713) addi a4, a0, 64 +core 0: 3 0x0000000080001ae4 (0x04050713) x14 0x0000000080002bc0 +core 0: 0x0000000080001ae8 (0x08d77463) bgeu a4, a3, pc + 136 +core 0: 3 0x0000000080001ae8 (0x08d77463) +core 0: 0x0000000080001b70 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b70 (0x00050793) x15 0x0000000080002b80 +core 0: 0x0000000080001b74 (0xfddff06f) j pc - 0x24 +core 0: 3 0x0000000080001b74 (0xfddff06f) +core 0: 0x0000000080001b50 (0xf8d7f8e3) bgeu a5, a3, pc - 112 +core 0: 3 0x0000000080001b50 (0xf8d7f8e3) +core 0: 0x0000000080001ae0 (0x00008067) ret +core 0: 3 0x0000000080001ae0 (0x00008067) +core 0: 0x0000000080001c1c (0x00001617) auipc a2, 0x1 +core 0: 3 0x0000000080001c1c (0x00001617) x12 0x0000000080002c1c +core 0: 0x0000000080001c20 (0xfa860613) addi a2, a2, -88 +core 0: 3 0x0000000080001c20 (0xfa860613) x12 0x0000000080002bc4 +core 0: 0x0000000080001c24 (0x40860633) sub a2, a2, s0 +core 0: 3 0x0000000080001c24 (0x40860633) x12 0x0000000000000044 +core 0: 0x0000000080001c28 (0x009a8533) add a0, s5, s1 +core 0: 3 0x0000000080001c28 (0x009a8533) x10 0x0000000080002b80 +core 0: 0x0000000080001c2c (0x00000593) li a1, 0 +core 0: 3 0x0000000080001c2c (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0xf49ff0ef) jal pc - 0xb8 +core 0: 3 0x0000000080001c30 (0xf49ff0ef) x1 0x0000000080001c34 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: 0x0000000080001b78 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c567b3) x15 0x0000000080002bc4 +core 0: 0x0000000080001b7c (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b7c (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b80 (0x00c50633) add a2, a0, a2 +core 0: 3 0x0000000080001b80 (0x00c50633) x12 0x0000000080002bc4 +core 0: 0x0000000080001b84 (0x00078e63) beqz a5, pc + 28 +core 0: 3 0x0000000080001b84 (0x00078e63) 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: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080002b80 +core 0: 0x0000000080001b8c (0x04c57263) bgeu a0, a2, pc + 68 +core 0: 3 0x0000000080001b8c (0x04c57263) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b81 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b80 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b82 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b81 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b83 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b82 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b84 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b83 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b85 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b84 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b86 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b85 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b87 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b86 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b88 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b87 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b89 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b88 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b89 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b8f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b90 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b8f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b91 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b90 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b92 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b91 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b93 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b92 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b94 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b93 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b95 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b94 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b96 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b95 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b97 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b96 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b98 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b97 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b99 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b98 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9a +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b99 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9b +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9a 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9c +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9b 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9d +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9c 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9e +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9d 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002b9f +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9e 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba0 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002b9f 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba1 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba0 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba2 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba1 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba3 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba2 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba4 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba3 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba5 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba4 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba6 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba5 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba7 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba6 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba8 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba7 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002ba9 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba8 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002baa +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002ba9 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bab +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002baa 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bac +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bab 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bad +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bac 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bae +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bad 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002baf +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bae 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb0 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002baf 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb1 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb0 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb2 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb1 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb3 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb2 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb4 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb3 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb5 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb4 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb6 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb5 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb7 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb6 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb8 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb7 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bb9 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb8 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bba +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bb9 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bbb +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bba 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bbc +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bbb 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bbd +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bbc 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bbe +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bbd 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bbf +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bbe 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bc0 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bbf 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bc1 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bc0 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bc2 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bc1 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bc3 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bc2 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b90 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001b90 (0x00178793) x15 0x0000000080002bc4 +core 0: 0x0000000080001b94 (0xfeb78fa3) sb a1, -1(a5) +core 0: 3 0x0000000080001b94 (0xfeb78fa3) mem 0x0000000080002bc3 0x00 +core 0: 0x0000000080001b98 (0xfef61ce3) bne a2, a5, pc - 8 +core 0: 3 0x0000000080001b98 (0xfef61ce3) +core 0: 0x0000000080001b9c (0x00008067) ret +core 0: 3 0x0000000080001b9c (0x00008067) +core 0: 0x0000000080001c34 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c34 (0x03f10a13) x20 0x000000008002278f +core 0: 0x0000000080001c38 (0x00098593) mv a1, s3 +core 0: 3 0x0000000080001c38 (0x00098593) x11 0x0000000000000001 +core 0: 0x0000000080001c3c (0x00090513) mv a0, s2 +core 0: 3 0x0000000080001c3c (0x00090513) x10 0x0000000000000000 +core 0: 0x0000000080001c40 (0xd45ff0ef) jal pc - 0x2bc +core 0: 3 0x0000000080001c40 (0xd45ff0ef) x1 0x0000000080001c44 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: 0x0000000080001c44 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c44 (0xfc0a7a13) x20 0x0000000080022780 +core 0: 0x0000000080001c48 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c48 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c4c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c4c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c50 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c50 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c54 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c54 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c58 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c58 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c5c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c5c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c60 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c60 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c64 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c64 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c68 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c68 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c6c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c6c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c70 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c70 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c74 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c74 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c78 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c78 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c7c (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c7c (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c80 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c80 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c84 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c84 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001c88 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001c88 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001c8c (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001c8c (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001c90 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001c90 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001c94 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001c94 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001c98 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001c98 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001c9c (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001c9c (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001ca0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001ca0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001ca4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001ca4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001ca8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001ca8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cac (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cac (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cb0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cb0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cb4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cb4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cb8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cb8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cbc (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cbc (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cc0 (0x7b4000ef) jal pc + 0x7b4 +core 0: 3 0x0000000080001cc0 (0x7b4000ef) x1 0x0000000080001cc4 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: 0x0000000080002474 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002474 (0x00000797) x15 0x0000000080002474 +core 0: 0x0000000080002478 (0x13878793) addi a5, a5, 312 +core 0: 3 0x0000000080002478 (0x13878793) x15 0x00000000800025ac +core 0: 0x000000008000247c (0x0007d783) lhu a5, 0(a5) +core 0: 3 0x000000008000247c (0x0007d783) x15 0x0000000000004280 mem 0x00000000800025ac +core 0: 0x0000000080002480 (0xfc010113) addi sp, sp, -64 +core 0: 3 0x0000000080002480 (0xfc010113) x2 0x0000000080022710 +core 0: 0x0000000080002484 (0x02113c23) sd ra, 56(sp) +core 0: 3 0x0000000080002484 (0x02113c23) mem 0x0000000080022748 0x0000000080001cc4 +core 0: 0x0000000080002488 (0x02813823) sd s0, 48(sp) +core 0: 3 0x0000000080002488 (0x02813823) mem 0x0000000080022740 0x0000000080002b80 +core 0: 0x000000008000248c (0x02913423) sd s1, 40(sp) +core 0: 3 0x000000008000248c (0x02913423) mem 0x0000000080022738 0x0000000000000000 +core 0: 0x0000000080002490 (0x00f11323) sh a5, 6(sp) +core 0: 3 0x0000000080002490 (0x00f11323) mem 0x0000000080022716 0x4280 +core 0: 0x0000000080002494 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002494 (0xc00027f3) x15 0x00000000000004ee +core 0: 0x0000000080002498 (0x06400413) li s0, 100 +core 0: 3 0x0000000080002498 (0x06400413) x8 0x0000000000000064 +core 0: 0x000000008000249c (0xffff04b7) lui s1, 0xffff0 +core 0: 3 0x000000008000249c (0xffff04b7) x9 0xffffffffffff0000 +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000063 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000062 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000061 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000060 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000005a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 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: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000059 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000058 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000057 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000056 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000055 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000054 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000053 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000052 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000051 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000050 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000004a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000049 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000048 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000047 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000046 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000045 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000044 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000043 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000042 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000041 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000040 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000003a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000039 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000038 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000037 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000036 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000035 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000034 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000033 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000032 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000031 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000030 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000002a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000029 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000028 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000027 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000026 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000025 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000024 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000023 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000022 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000021 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000020 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000001a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000019 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000018 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000017 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000016 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000015 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000014 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000013 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000012 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000011 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000010 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000f +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000e +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000d +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000c +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000b +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x000000000000000a +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000009 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000008 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000007 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000006 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000005 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000004 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000003 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000002 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000001 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024a0 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024a0 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x00000000800024a4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024a4 (0xfff4041b) x8 0x0000000000000000 +core 0: 0x00000000800024a8 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024a8 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024ac (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024ac (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024b0 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024b0 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024b4 (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024b4 (0x979ff0ef) x1 0x00000000800024b8 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e2c (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e2c (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e30 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e30 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e34 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e34 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e38 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e38 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e3c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e3c (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e40 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e40 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e44 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e44 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e48 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e48 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e4c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e4c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e50 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e50 (0x00060a63) +core 0: 0x0000000080001e54 (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e54 (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e58 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e58 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e5c (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e5c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e60 (0x0200006f) +core 0: 0x0000000080001e80 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e80 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e84 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e84 (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001e88 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001e88 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001e8c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001e8c (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001e90 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001e90 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001e94 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001e94 (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001e98 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001e98 (0x00060463) +core 0: 0x0000000080001ea0 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001ea0 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x00000000800024b8 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024b8 (0x00a12427) mem 0x0000000080022718 0x40500000 +core 0: 0x00000000800024bc (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024bc (0xfe0412e3) +core 0: 0x00000000800024c0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024c0 (0xc00027f3) x15 0x0000000000001964 +core 0: 0x00000000800024c4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800024c4 (0x00000797) x15 0x00000000800024c4 +core 0: 0x00000000800024c8 (0x0e47a787) flw fa5, 228(a5) +core 0: 3 0x00000000800024c8 (0x0e47a787) f15 0xffffffff40500000 mem 0x00000000800025a8 +core 0: 0x00000000800024cc (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x00000000800024cc (0x00f12627) mem 0x000000008002271c 0x40500000 +core 0: 0x00000000800024d0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024d0 (0xc00027f3) x15 0x000000000000197f +core 0: 0x00000000800024d4 (0x06400413) li s0, 100 +core 0: 3 0x00000000800024d4 (0x06400413) x8 0x0000000000000064 +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000063 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000062 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000061 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000060 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000005a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 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: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000059 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000058 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000057 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000056 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000055 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000054 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000053 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000052 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000051 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000050 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000004a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000049 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000048 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000047 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000046 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000045 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000044 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000043 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000042 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000041 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000040 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000003a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000039 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000038 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000037 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000036 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000035 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000034 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000033 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000032 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000031 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000030 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000002a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000029 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000028 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000027 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000026 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000025 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000024 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000023 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000022 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000021 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000020 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000001a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000019 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000018 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000017 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000016 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000015 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000014 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000013 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000012 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000011 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000010 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000f +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000e +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000d +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000c +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000b +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x000000000000000a +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000009 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000008 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000007 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000006 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000005 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000004 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000003 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000002 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000001 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024d8 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002271c +core 0: 0x00000000800024dc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024dc (0xfff4041b) x8 0x0000000000000000 +core 0: 0x00000000800024e0 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024e0 (0xd15ff0ef) x1 0x00000000800024e4 +core 0: >>>> __truncsfhf2 +core 0: 0x00000000800021f4 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x00000000800021f4 (0xe00505d3) x11 0x0000000040500000 +core 0: 0x00000000800021f8 (0x00202573) csrr a0, frm +core 0: 3 0x00000000800021f8 (0x00202573) x10 0x0000000000000000 +core 0: 0x00000000800021fc (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x00000000800021fc (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002200 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002200 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x0000000080002204 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080002204 (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002208 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002208 (0x02959793) x15 0xa000000000000000 +core 0: 0x000000008000220c (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x000000008000220c (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002210 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002210 (0x0297d693) x13 0x0000000000500000 +core 0: 0x0000000080002214 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080002214 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002218 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002218 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x000000008000221c (0x0267d793) srli a5, a5, 38 +core 0: 3 0x000000008000221c (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002220 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002220 (0x10060463) +core 0: 0x0000000080002224 (0xf9070713) addi a4, a4, -112 +core 0: 3 0x0000000080002224 (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002228 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002228 (0x01e00613) x12 0x000000000000001e +core 0: 0x000000008000222c (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x000000008000222c (0x06e65a63) +core 0: 0x00000000800022a0 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022a0 (0x06e04663) +core 0: 0x000000008000230c (0x03669693) slli a3, a3, 54 +core 0: 3 0x000000008000230c (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002310 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002310 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x0000000080002314 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002314 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002318 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002318 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000231c (0x00000613) li a2, 0 +core 0: 3 0x000000008000231c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002320 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002320 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080002324 (0x0640006f) j pc + 0x64 +core 0: 3 0x0000000080002324 (0x0640006f) +core 0: 0x0000000080002388 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002388 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000238c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000238c (0xf00810e3) +core 0: 0x0000000080002390 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002390 (0x00060863) +core 0: 0x00000000800023a0 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023a0 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023a4 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023a4 (0x04064a63) +core 0: 0x00000000800023a8 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023a8 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023ac (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023ac (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023b0 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023b0 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023b4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023b4 (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023b8 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023b8 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023bc (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023bc (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023c0 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023c0 (0x00068463) +core 0: 0x00000000800023c8 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023c8 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023cc (0x00008067) ret +core 0: 3 0x00000000800023cc (0x00008067) +core 0: 0x00000000800024e4 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024e4 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x00000000800024e8 (0x01079793) slli a5, a5, 16 +core 0: 3 0x00000000800024e8 (0x01079793) x15 0xffffffff42800000 +core 0: 0x00000000800024ec (0x4107d793) srai a5, a5, 16 +core 0: 3 0x00000000800024ec (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x00000000800024f0 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x00000000800024f0 (0x00f11123) mem 0x0000000080022712 0x4280 +core 0: 0x00000000800024f4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024f4 (0xfe0412e3) +core 0: 0x00000000800024f8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024f8 (0xc00027f3) x15 0x0000000000002f97 +core 0: 0x00000000800024fc (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024fc (0xc00027f3) x15 0x0000000000002fa0 +core 0: 0x0000000080002500 (0x06400413) li s0, 100 +core 0: 3 0x0000000080002500 (0x06400413) x8 0x0000000000000064 +core 0: 0x0000000080002504 (0xffff04b7) lui s1, 0xffff0 +core 0: 3 0x0000000080002504 (0xffff04b7) x9 0xffffffffffff0000 +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000063 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000062 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000061 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000060 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000005a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 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: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000059 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000058 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000057 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000056 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000055 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000054 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000053 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000052 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000051 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000050 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000004a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000049 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000048 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000047 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000046 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000045 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000044 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000043 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000042 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000041 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000040 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000003a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000039 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000038 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000037 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000036 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000035 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000034 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000033 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000032 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000031 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000030 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000002a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000029 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000028 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000027 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000026 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000025 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000024 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000023 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000022 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000021 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000020 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000001a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000019 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000018 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000017 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000016 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000015 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000014 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000013 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000012 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000011 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000010 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000f +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000e +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000d +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000c +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000b +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x000000000000000a +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000009 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000008 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000007 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000006 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000005 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000004 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000003 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000002 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000001 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002508 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002508 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022716 +core 0: 0x000000008000250c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000250c (0xfff4041b) x8 0x0000000000000000 +core 0: 0x0000000080002510 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002510 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x0000000080002514 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x0000000080002514 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002518 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002518 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x000000008000251c (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x000000008000251c (0x9b5ff0ef) x1 0x0000000080002520 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ed0 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ed0 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001ed4 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001ed4 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ed8 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ed8 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001edc (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001edc (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ee0 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ee0 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001ee4 (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001ee4 (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001ee8 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001ee8 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001eec (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001eec (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001ef0 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001ef0 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001ef4 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001ef4 (0x00060a63) +core 0: 0x0000000080001ef8 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001ef8 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001efc (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001efc (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f00 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f00 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f04 (0x0200006f) +core 0: 0x0000000080001f24 (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f24 (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f28 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f28 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f2c (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f2c (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f30 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f30 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f34 (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f34 (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f38 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f38 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f3c (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f3c (0x00060463) +core 0: 0x0000000080001f44 (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f44 (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f48 (0x00008067) ret +core 0: 3 0x0000000080001f48 (0x00008067) +core 0: 0x0000000080002520 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002520 (0x00a13827) mem 0x0000000080022720 0x400a000000000000 +core 0: 0x0000000080002524 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002524 (0xfe0412e3) +core 0: 0x0000000080002528 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002528 (0xc00027f3) x15 0x00000000000043e7 +core 0: 0x000000008000252c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000252c (0x00000797) x15 0x000000008000252c +core 0: 0x0000000080002530 (0x0747b787) fld fa5, 116(a5) +core 0: 3 0x0000000080002530 (0x0747b787) f15 0x400a000000000000 mem 0x00000000800025a0 +core 0: 0x0000000080002534 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080002534 (0x00f13c27) mem 0x0000000080022728 0x400a000000000000 +core 0: 0x0000000080002538 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002538 (0xc00027f3) x15 0x0000000000004402 +core 0: 0x000000008000253c (0x06400413) li s0, 100 +core 0: 3 0x000000008000253c (0x06400413) x8 0x0000000000000064 +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000063 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000062 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000061 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000060 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000005a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c 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: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000059 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000058 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000057 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000056 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000055 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000054 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000053 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000052 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000051 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000050 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000004a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000049 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000048 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000047 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000046 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000045 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000044 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000043 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000042 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000041 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000040 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000003a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000039 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000038 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000037 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000036 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000035 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000034 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000033 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000032 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000031 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000030 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000002a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000029 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000028 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000027 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000026 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000025 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000024 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000023 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000022 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000021 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000020 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000001a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000019 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000018 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000017 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000016 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000015 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000014 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000013 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000012 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000011 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000010 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000f +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000e +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000d +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000c +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000b +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x000000000000000a +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000009 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000008 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000007 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000006 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000005 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000004 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000003 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000002 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000001 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002540 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002540 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022728 +core 0: 0x0000000080002544 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002544 (0xfff4041b) x8 0x0000000000000000 +core 0: 0x0000000080002548 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002548 (0xa2dff0ef) x1 0x000000008000254c +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f74 (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f74 (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f78 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f78 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f7c (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f7c (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f80 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f80 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f84 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f84 (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001f88 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001f88 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001f8c (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001f8c (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001f90 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001f90 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001f94 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001f94 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001f98 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001f98 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001f9c (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001f9c (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fa0 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fa0 (0x10060463) +core 0: 0x0000000080001fa4 (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fa4 (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fa8 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fa8 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fac (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fac (0x06e65a63) +core 0: 0x0000000080002020 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002020 (0x06e04663) +core 0: 0x000000008000208c (0x01969693) slli a3, a3, 25 +core 0: 3 0x000000008000208c (0x01969693) x13 0x0000000000000000 +core 0: 0x0000000080002090 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x0000000080002090 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x0000000080002094 (0x00d036b3) snez a3, a3 +core 0: 3 0x0000000080002094 (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002098 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002098 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x000000008000209c (0x00000613) li a2, 0 +core 0: 3 0x000000008000209c (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020a0 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020a0 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020a4 (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020a4 (0x0640006f) +core 0: 0x0000000080002108 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002108 (0x0077f813) x16 0x0000000000000000 +core 0: 0x000000008000210c (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x000000008000210c (0xf00810e3) +core 0: 0x0000000080002110 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002110 (0x00060863) +core 0: 0x0000000080002120 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002120 (0x03279613) x12 0x5000000000000000 +core 0: 0x0000000080002124 (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x0000000080002124 (0x04064a63) +core 0: 0x0000000080002128 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002128 (0x0037d793) x15 0x0000000000000280 +core 0: 0x000000008000212c (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x000000008000212c (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002130 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002130 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x0000000080002134 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002134 (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002138 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002138 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x000000008000213c (0x00b76733) or a4, a4, a1 +core 0: 3 0x000000008000213c (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002140 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002140 (0x00068463) +core 0: 0x0000000080002148 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002148 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x000000008000214c (0x00008067) ret +core 0: 3 0x000000008000214c (0x00008067) +core 0: 0x000000008000254c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000254c (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002550 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002550 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002554 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002554 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002558 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002558 (0x00f11223) mem 0x0000000080022714 0x4280 +core 0: 0x000000008000255c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000255c (0xfe0412e3) +core 0: 0x0000000080002560 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002560 (0xc00027f3) x15 0x0000000000005a13 +core 0: 0x0000000080002564 (0x03813083) ld ra, 56(sp) +core 0: 3 0x0000000080002564 (0x03813083) x1 0x0000000080001cc4 mem 0x0000000080022748 +core 0: 0x0000000080002568 (0x03013403) ld s0, 48(sp) +core 0: 3 0x0000000080002568 (0x03013403) x8 0x0000000080002b80 mem 0x0000000080022740 +core 0: 0x000000008000256c (0x02813483) ld s1, 40(sp) +core 0: 3 0x000000008000256c (0x02813483) x9 0x0000000000000000 mem 0x0000000080022738 +core 0: 0x0000000080002570 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002570 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080002574 (0x04010113) addi sp, sp, 64 +core 0: 3 0x0000000080002574 (0x04010113) x2 0x0000000080022750 +core 0: 0x0000000080002578 (0x00008067) ret +core 0: 3 0x0000000080002578 (0x00008067) +core 0: 0x0000000080001cc4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cc4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001cc8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001cc8 (0x000a0493) x9 0x0000000080022780 +core 0: 0x0000000080001ccc (0xcf018413) addi s0, gp, -784 +core 0: 3 0x0000000080001ccc (0xcf018413) x8 0x0000000080002a90 +core 0: 0x0000000080001cd0 (0xc0018913) addi s2, gp, -1024 +core 0: 3 0x0000000080001cd0 (0xc0018913) x18 0x00000000800029a0 +core 0: 0x0000000080001cd4 (0xde018993) addi s3, gp, -544 +core 0: 3 0x0000000080001cd4 (0xde018993) x19 0x0000000080002b80 +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022780 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 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: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002a90 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022780 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022780 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000000005a13 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000004280 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x00000000800225d0 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022590 core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) -core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227c0 +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022780 core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) -core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227c0 +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022780 core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) -core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029b8 +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029a0 core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) -core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) -core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) -core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) -core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) -core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) -core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) -core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) -core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) -core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 core 0: 0x0000000080001040 (0x00058913) mv s2, a1 -core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 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: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002838 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002839 core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 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: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002839 core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -3688,576 +31759,3790 @@ 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 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: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (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: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 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: 0x0000000080001374 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 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: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) 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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022780 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c0 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022780 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022780 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022781 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022781 +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022781 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022781 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022781 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022782 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022782 +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022782 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022782 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022782 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022783 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022783 +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022783 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022783 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022783 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022784 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022784 +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022784 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022784 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022784 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022785 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022785 +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022785 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022785 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022785 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022786 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022786 +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022786 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022786 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022786 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022787 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022787 +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022787 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022787 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022787 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022788 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022788 +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022788 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022788 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022788 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022789 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022789 +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022789 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022789 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022789 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278a mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278a 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278a mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278b +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 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022780 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022780 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029a0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002278b mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002278b 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002278b mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002a90 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002a98 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029a8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002278b +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029a8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002278b +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002a98 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002278b +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002278b +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002278b +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002278b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002278b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029a8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278b mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278b 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278b mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278c +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278c mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278c 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278c mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278d +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278d mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278d 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278d mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278e +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278e mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278e mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002278f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002278f +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002278f mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002278f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002278f mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022790 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022790 +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022790 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022790 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022790 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022791 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022791 +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022791 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022791 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022791 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022792 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022792 +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022792 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022792 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022792 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022793 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022793 +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022793 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022793 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022793 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022794 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022794 +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022794 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022794 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022794 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022795 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022795 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022795 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022795 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022795 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022796 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022796 +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 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002278b mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002278b mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029a8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022796 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022796 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022796 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002a98 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002aa0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029b0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022796 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029b0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002aa0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022796 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002aa0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022796 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022796 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022796 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022796 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022796 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029b0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022796 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022796 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022796 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022797 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022797 +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022797 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022797 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022797 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022798 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022798 +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022798 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022798 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022798 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022799 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022799 +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022799 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022799 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022799 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279a +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279a mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279a mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279b +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279b mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279b mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279c +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279c mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279c mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279d +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279d mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279d mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279e +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279e mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279e mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002279f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002279f +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002279f mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002279f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002279f mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a0 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a0 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a0 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a1 +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 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022796 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022796 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029b0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227a1 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227a1 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227a1 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002aa0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002aa8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029b8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227a1 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029b8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002aa8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227a1 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002aa8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227a1 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227a1 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227a1 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227a1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227a1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029b8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a1 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a1 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a1 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a2 +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a2 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a2 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a2 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a3 +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a3 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a3 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a3 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a4 +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a4 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a4 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a5 +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a5 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a5 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a6 +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a6 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a6 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a6 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a7 +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a7 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a7 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a7 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a8 +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a8 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a8 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a8 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227a9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227a9 +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227a9 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227a9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227a9 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227aa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227aa +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227aa mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227aa 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227aa mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ab +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ab +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ab mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ab 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ab mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ac +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ac +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 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227a1 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227a1 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029b8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227ac mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227ac 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227ac mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002aa8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ab0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029c0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227ac +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227ac +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ab0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227ac +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227ac +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227ac +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227ac +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227ac +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029c0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ac mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ac 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ac mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ad +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ad +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ad mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ad 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ad mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ae +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ae +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ae mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ae 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ae mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227af +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227af +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227af mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227af 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227af mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b0 +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b0 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b0 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b1 +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b1 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b1 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b2 +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b2 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b2 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b3 +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b3 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b3 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b4 +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b4 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b4 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b5 +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b5 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b5 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b6 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b6 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b7 +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 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227ac mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227ac mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227b7 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227b7 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227b7 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ab0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ab8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029c8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227b7 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227b7 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ab8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227b7 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227b7 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227b7 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227b7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227b7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029c8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b7 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b7 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b8 +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 0x00000000800025b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b8 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b8 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227b9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227b9 +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 0x00000000800025b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227b9 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227b9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227b9 mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ba +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ba +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 0x00000000800025b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ba mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ba 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ba mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227bb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227bb +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 0x00000000800025b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227bb mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227bb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227bb mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227bc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227bc +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 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227bc mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227bc 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227bc mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227bd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227bd +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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x000000008000283a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227bd mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227bd 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227bd mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227be +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227be +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 0x000000008000283b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227be mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227be 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227be mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227bf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227bf +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 0x000000008000283c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227bf mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227bf 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227bf mem 0x00000000800226f8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227c0 +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 0x000000008000283d +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 0x000000008000283e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e +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 0x000000008000283e +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 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) 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 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c0 mem 0x00000000800226f8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c0 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c1 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c1 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227b7 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227b7 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227c2 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227c2 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227c2 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ab8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ac0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029d0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227c2 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227c2 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ac0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227c2 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227c2 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227c2 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227c2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227c2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029d0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c2 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c2 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c3 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c3 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c4 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c4 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c4 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c4 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c5 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c5 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c6 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c6 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c7 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c7 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227c8 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c8 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c9 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c9 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ca mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ca 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ca 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ca mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ca mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -4265,580 +35550,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cb mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cb 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cb 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cb mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cc mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cc 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cc 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cc mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227c2 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227c2 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227cd mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227cd 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227cd mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ac0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ac8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029d8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227cd +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227cd +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ac8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227cd +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227cd +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227cd +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227cd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227cd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029d8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cd mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cd 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cd 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cd mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cd mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ce mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ce 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ce 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ce mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ce mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cf mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cf 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cf 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cf mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cf mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d0 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d0 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d1 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d1 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d2 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d2 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227d3 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d3 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d4 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d4 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d4 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d5 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d5 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -4846,580 +36133,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d6 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d6 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d7 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d7 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227cd mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227cd mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227d8 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227d8 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227d8 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ac8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ad0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029e0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227d8 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227d8 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ad0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227d8 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227d8 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227d8 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227d8 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227d8 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029e0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d8 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d8 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d9 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d9 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227da mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227da 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227da 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227da mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227da mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227db mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227db 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227db 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227db mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227db mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dc mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dc 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dc 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dc mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dd mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dd 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dd 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dd mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227de 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227de mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227de mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227df mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227df 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227df 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227df mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e0 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e0 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -5427,580 +36716,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e1 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e1 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e2 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e2 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227d8 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227d8 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227e3 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227e3 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227e3 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ad0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ad8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029e8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227e3 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227e3 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ad8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227e3 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227e3 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227e3 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227e3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227e3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029e8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e3 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e3 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e4 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e4 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e4 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e4 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e5 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e5 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e6 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e6 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e7 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e7 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e8 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e8 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227e9 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e9 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ea mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ea 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ea 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ea mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227eb mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227eb 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227eb 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227eb mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227eb mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -6008,580 +37299,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ec mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ec 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ec 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ec mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ed mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ed 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ed 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ed mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227e3 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227e3 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227ee mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227ee 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227ee mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ad8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ae0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029f0 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227ee +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f0 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227ee +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ae0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227ee +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227ee +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227ee +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227ee +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227ee +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029f0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ee mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ee 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ee 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ee mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ee mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ef mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ef 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ef 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ef mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ef mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f0 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f0 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f1 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f1 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f2 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f2 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f3 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f3 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227f4 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f4 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f5 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f5 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f6 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f6 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -6589,580 +37882,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f7 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f7 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f8 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f8 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227ee mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227ee mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f0 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800227f9 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800227f9 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800227f9 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ae0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002ae8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x00000000800029f8 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800227f9 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f8 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800227f9 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002ae8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800227f9 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800227f9 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800227f9 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800227f9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800227f9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x00000000800029f8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f9 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f9 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fa mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fa 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fa 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fa mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fa mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fb mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fb 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fb 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fb mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fb mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fc mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fc 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fc 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fc mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fc mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fd mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fd 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fd 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fd mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fe mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fe 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fe 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fe mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800227ff 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ff mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ff mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022800 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022800 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022800 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022800 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022801 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022801 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022801 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022801 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022801 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7170,580 +38465,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022802 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022802 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022802 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022802 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022803 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022803 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022803 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022803 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227f9 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227f9 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f8 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022804 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022804 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022804 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002ae8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002af0 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a00 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022804 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a00 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af0 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022804 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002af0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022804 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022804 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022804 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022804 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022804 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a00 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022804 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022804 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022804 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022804 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022804 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022805 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022805 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022805 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022805 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022805 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022806 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022806 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022806 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022806 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022806 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022807 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022807 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022807 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022807 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022807 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022808 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022808 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022808 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022808 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022809 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022809 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022809 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022809 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002280a 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280a mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280b 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280b 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280c 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280c 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -7751,580 +39048,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280d 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280d 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280e 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280e 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022804 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022804 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a00 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002280f mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002280f 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002280f mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002af0 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002af8 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a08 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002280f +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a08 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af8 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002280f +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002af8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002280f +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002280f +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002280f +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002280f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002280f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a08 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280f 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280f 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022810 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022810 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022810 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022810 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022810 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022811 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022811 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022811 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022811 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022811 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022812 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022812 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022812 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022812 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022812 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022813 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022813 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022813 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022813 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022814 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022814 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022814 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022814 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022815 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022815 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022815 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022816 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022816 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022816 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022816 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022817 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022817 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022817 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022817 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022817 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -8332,580 +39631,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022818 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022818 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022818 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022818 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022819 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022819 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022819 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022819 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002280f mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002280f mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a08 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002281a mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002281a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002281a mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002af8 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b00 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a10 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002281a +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a10 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b00 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002281a +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b00 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002281a +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002281a +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002281a +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002281a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002281a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a10 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281a 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281a 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281b 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281b 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281c 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281c 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281d 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281d 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281e 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281e 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281f 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281f 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022820 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022820 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022820 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022821 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022821 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022821 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022821 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022822 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022822 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022822 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022822 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022822 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -8913,580 +40214,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022823 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022823 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022823 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022823 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022824 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022824 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022824 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022824 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002281a mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002281a mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a10 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022825 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022825 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022825 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b00 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b08 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a18 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022825 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a18 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b08 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022825 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b08 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022825 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022825 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022825 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022825 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022825 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a18 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022825 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022825 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022825 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022825 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022825 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022826 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022826 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022826 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022826 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022826 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022827 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022827 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022827 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022827 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022827 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022828 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022828 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022828 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022828 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022828 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022829 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022829 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022829 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022829 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282a 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282a 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002282b 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282b mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282c 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282c 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282d 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282d 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -9494,580 +40797,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282e 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282e 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282f 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282f 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022825 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022825 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a18 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022830 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022830 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022830 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b08 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b10 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a20 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022830 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a20 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b10 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022830 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b10 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022830 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022830 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022830 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022830 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022830 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a20 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022830 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022830 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022830 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022830 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022830 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022831 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022831 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022831 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022831 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022831 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022832 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022832 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022832 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022832 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022832 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022833 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022833 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022833 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022833 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022833 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022834 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022834 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022834 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022834 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022835 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022835 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022835 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022835 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022836 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022836 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022836 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022837 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022837 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022837 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022837 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022838 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022838 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022838 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022838 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022838 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -10075,580 +41380,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022839 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022839 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022839 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022839 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283a 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283a 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022830 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022830 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a20 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002283b mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002283b 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002283b mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b10 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b18 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a28 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002283b +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a28 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b18 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002283b +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b18 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002283b +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002283b +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002283b +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002283b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002283b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a28 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283b 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283b 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283c 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283c 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283d 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283d 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283e 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283e 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283f 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283f 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022840 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022840 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022840 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022840 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022841 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022841 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022841 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022842 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022842 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022842 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022842 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022843 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022843 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022843 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022843 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022843 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -10656,580 +41963,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022844 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022844 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022844 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022844 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022845 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022845 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022845 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022845 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002283b mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002283b mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a28 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022846 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022846 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022846 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b18 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b20 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a30 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022846 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a30 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b20 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022846 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b20 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022846 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022846 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022846 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022846 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022846 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a30 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022846 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022846 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022846 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022846 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022846 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022847 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022847 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022847 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022847 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022847 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022848 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022848 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022848 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022848 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022848 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022849 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022849 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022849 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022849 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022849 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284a 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284a 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284b 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284b 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002284c 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284c mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284d 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284d 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284e 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284e 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -11237,580 +42546,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284f 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284f 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022850 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022850 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022850 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022850 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022846 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022846 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a30 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022851 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022851 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022851 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b20 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b28 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a38 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022851 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a38 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b28 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022851 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b28 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022851 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022851 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022851 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022851 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022851 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022851 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022851 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022851 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022851 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022851 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022852 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022852 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022852 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022852 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022852 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022853 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022853 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022853 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022853 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022853 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022854 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022854 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022854 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022854 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022854 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022855 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022855 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022855 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022855 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022856 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022856 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022856 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022856 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022857 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022857 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022857 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022858 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022858 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022858 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022858 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022859 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022859 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022859 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022859 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022859 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -11818,580 +43129,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285a 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285a 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285b 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285b 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022851 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022851 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a38 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002285c mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002285c 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002285c mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b28 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b30 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a40 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002285c +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a40 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b30 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002285c +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b30 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002285c +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002285c +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002285c +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002285c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002285c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285c 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285c 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285d 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285d 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285e 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285e 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285f 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285f 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022860 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022860 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022860 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022860 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022861 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022861 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022861 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022861 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022862 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022862 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022862 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022863 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022863 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022863 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022863 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022864 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022864 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022864 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022864 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022864 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12399,580 +43712,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022865 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022865 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022865 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022865 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022866 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022866 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022866 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022866 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002285c mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002285c mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a40 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022867 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022867 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022867 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b30 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b38 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a48 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022867 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a48 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b38 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022867 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b38 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022867 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022867 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022867 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022867 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022867 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022867 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022867 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022867 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022867 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022867 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022868 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022868 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022868 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022868 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022868 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022869 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022869 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022869 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022869 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022869 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286a 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286a 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286b 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286b 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286c 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286c 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002286d 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286d mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286e 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286e 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286f 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286f 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -12980,580 +44295,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022870 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022870 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022870 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022870 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022871 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022871 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022871 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022871 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022867 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022867 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a48 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022872 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022872 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022872 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b38 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b40 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a50 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022872 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a50 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b40 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022872 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b40 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022872 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022872 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022872 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022872 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022872 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022872 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022872 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022872 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022872 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022872 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022873 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022873 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022873 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022873 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022873 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022874 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022874 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022874 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022874 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022874 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022875 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022875 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022875 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022875 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022875 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022876 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022876 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022876 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022876 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022877 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022877 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022877 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022877 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022878 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022878 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022878 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022879 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022879 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022879 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022879 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287a 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287a 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -13561,580 +44878,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287b 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287b 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287c 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287c 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022872 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022872 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a50 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002287d mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002287d 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002287d mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b40 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b48 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a58 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002287d +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a58 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b48 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002287d +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b48 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002287d +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002287d +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002287d +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002287d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002287d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287d 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287d 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287e 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287e 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287f 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287f 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022880 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022880 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022880 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022880 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022880 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022881 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022881 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022881 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022881 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022882 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022882 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022882 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022882 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022883 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022883 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022883 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022884 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022884 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022884 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022884 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022885 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022885 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022885 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022885 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022885 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14142,580 +45461,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022886 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022886 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022886 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022886 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022887 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022887 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022887 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022887 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002287d mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002287d mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a58 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022888 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022888 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022888 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b48 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b50 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a60 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022888 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a60 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b50 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022888 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b50 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022888 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022888 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022888 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022888 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022888 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022888 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022888 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022888 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022888 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022888 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022889 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022889 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022889 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022889 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022889 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288a 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288a 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288b 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288b 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288c 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288c 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288d 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288d 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x000000008002288e 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288e mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288f 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288f 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022890 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022890 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022890 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022890 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022890 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -14723,580 +46044,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022891 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022891 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022891 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022891 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022892 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022892 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022892 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022892 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022888 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022888 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a60 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022893 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022893 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022893 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b50 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b58 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a68 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x0000000080022893 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a68 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b58 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x0000000080022893 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b58 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x0000000080022893 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022893 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x0000000080022893 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x0000000080022893 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x0000000080022893 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022893 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022893 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022893 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022893 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022893 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022894 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022894 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022894 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022894 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022894 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022895 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022895 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022895 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022895 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022895 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022896 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022896 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022896 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022896 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022896 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022897 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022897 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022897 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022897 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022898 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022898 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022898 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022898 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x0000000080022899 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022899 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022899 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289a mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289a 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289a 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289a mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289b mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289b 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289b 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289b mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289b mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -15304,580 +46627,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289c mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289c 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289c 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289c mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289d mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289d 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289d 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289d mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022893 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022893 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a68 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x000000008002289e mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x000000008002289e 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x000000008002289e mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b58 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b60 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a70 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x000000008002289e +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a70 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b60 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x000000008002289e +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b60 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x000000008002289e +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x000000008002289e +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x000000008002289e +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x000000008002289e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x000000008002289e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289e mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289e 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289e 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289e mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289e mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289f mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289f 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289f 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289f mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289f mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a0 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a0 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a1 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a1 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a2 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a2 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a3 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a3 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800228a4 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a4 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a5 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a5 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a6 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a6 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -15885,580 +47210,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a7 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a7 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a8 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a8 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002289e mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002289e mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a70 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800228a9 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800228a9 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800228a9 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b60 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b68 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a78 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800228a9 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a78 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b68 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800228a9 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b68 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800228a9 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800228a9 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800228a9 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800228a9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800228a9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a9 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a9 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228aa mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228aa 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228aa 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228aa mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228aa mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ab mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ab 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ab 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ab mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ab mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ac mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ac 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ac 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ac mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ac mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ad mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ad 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ad 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ad mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ae mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ae 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ae 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ae mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800228af 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228af mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228af mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b0 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b0 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b1 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b1 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -16466,580 +47793,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b2 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b2 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b3 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b3 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228a9 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228a9 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a78 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800228b4 mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800228b4 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800228b4 mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b68 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b70 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a80 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800228b4 +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a80 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b70 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800228b4 +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b70 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800228b4 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800228b4 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800228b4 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800228b4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800228b4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b4 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b4 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b4 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b4 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b5 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b5 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b5 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b5 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b6 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b6 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b7 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b7 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b8 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b8 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b9 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b9 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800228ba 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ba mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ba mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bb mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bb 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bb 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bb mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bc mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bc 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bc 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bc mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bc mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -17047,580 +48376,582 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bd mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bd 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bd 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bd mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228be mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228be 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228be 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228be mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001068 (0xff4516e3) bne 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 0x0000000080001a88 mem 0x00000000800226e8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228b4 mem 0x00000000800226e0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228b4 mem 0x00000000800226d8 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a80 mem 0x00000000800226d0 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800228bf mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800228bf 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800228bf mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b70 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b78 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a88 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800228bf +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001cd8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cd8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a88 +core 0: 0x0000000080001cdc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cdc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b78 +core 0: 0x0000000080001ce0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001ce0 (0x00048513) x10 0x00000000800228bf +core 0: 0x0000000080001ce4 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001ce4 (0x00001597) x11 0x0000000080002ce4 +core 0: 0x0000000080001ce8 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001ce8 (0xb5458593) x11 0x0000000080002838 +core 0: 0x0000000080001cec (0xd51ff0ef) jal pc - 0x2b0 +core 0: 3 0x0000000080001cec (0xd51ff0ef) x1 0x0000000080001cf0 +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x00000000800226f0 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022720 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022710 0x0000000080002b78 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x00000000800226f8 0x00000000800228bf +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022720 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022728 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x00000000800228bf +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002838 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a60 (0x97c50513) x10 0x00000000800013d8 +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x00000000800226f8 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022720 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022718 0x0000000080001cf0 +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022738 0x00000000800228bf +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022708 0x0000000080022720 +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 0x0000000080022590 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800226e0 0x00000000800228bf +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x00000000800226d8 0x00000000800228bf +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x00000000800226d0 0x0000000080002a88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x00000000800226c0 0x0000000080022780 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226b8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226b0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226a8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800226e8 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x00000000800226c8 0x0000000080002b80 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226a0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022698 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022690 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 0x0000000080002838 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022720 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800226f8 +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 (0xaa418b13) addi s6, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418b13) x22 0x0000000080002844 +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 0x0000000080002838 +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 0x0000000080002839 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002839 +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 0x0000000080002839 +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 0x000000008000283a +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x0000000080002984 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea5c mem 0x0000000080002984 +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x00000000800012a0 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a0 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022720 +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 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b0 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b4 (0x008a8a93) x21 0x0000000080022728 +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 (0x240c0c13) addi s8, s8, 576 +core 0: 3 0x0000000080001374 (0x240c0c13) x24 0x00000000800025b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x000000008000137c (0xf40786e3) +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bf mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bf 0x75 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bf 0x28 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bf mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bf mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025b1 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b1 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c0 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c0 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c0 0x6e core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c0 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c0 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025b2 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b2 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c1 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c1 0x6c +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c1 0x75 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c1 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c1 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b3 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b3 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +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: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 core 0: 0x00000000800012dc (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c2 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c2 0x29 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c2 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c2 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c2 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025b4 core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 -core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b4 core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 -core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb 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: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c3 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c3 0x20 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c3 0x6c core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c3 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b5 +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 0x00000000800226f8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c4 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c4 0x3d +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c4 0x29 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c4 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800228c5 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 0x00000000800025b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025b6 +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 0x0000000080002854 +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283a core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283b core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c5 mem 0x00000000800226f8 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: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c5 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000283b 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: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c6 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c6 0x30 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c6 0x3d core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c6 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000283c core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 core 0: 3 0x0000000080001068 (0xff4516e3) core 0: 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: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 -core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000283d core 0: 0x0000000080001060 (0x000480e7) jalr s1 core 0: 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: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c7 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c7 0x0a +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c7 0x20 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c7 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c7 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000283d 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: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000283e core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 -core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000283e 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: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000283e core 0: 0x000000008000107c (0x00098c93) mv s9, s3 core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff core 0: 0x0000000080001080 (0x02000d13) li s10, 32 @@ -17628,3436 +48959,620 @@ 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: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 -core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 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: 3 0x0000000080001090 (0x00170413) x8 0x000000008000283f +core 0: 0x0000000080001094 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fbe463) +core 0: 0x0000000080001098 (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x0000000080001098 (0x2167c7b3) x15 0x000000008000298c 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: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeb00 mem 0x000000008000298c +core 0: 0x00000000800010a0 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a0 (0x016787b3) x15 0x0000000080001344 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: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x0000000080001348 (0xf3dff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008a8793) addi a5, s5, 8 +core 0: 3 0x0000000080001288 (0x008a8793) x15 0x0000000080022730 +core 0: 0x000000008000128c (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x000000008000128c (0xf2c744e3) +core 0: 0x0000000080001290 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001290 (0xf20612e3) +core 0: 0x0000000080001294 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001294 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022728 +core 0: 0x0000000080001298 (0x00078a93) mv s5, a5 +core 0: 3 0x0000000080001298 (0x00078a93) x21 0x0000000080022730 +core 0: 0x000000008000129c (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x000000008000129c (0xf21ff06f) +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 0x0000000080022594 +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 0x0000000080022590 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 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001210 (0x202c4d33) x26 0x0000000080022590 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002258c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x02700993) li s3, 39 +core 0: 3 0x000000008000121c (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001220 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001220 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022590 +core 0: 0x0000000080001224 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001224 (0x00090593) x11 0x00000000800226f8 +core 0: 0x0000000080001228 (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x0000000080001228 (0xffcd0d13) x26 0x000000008002258c +core 0: 0x000000008000122c (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x000000008000122c (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001230 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001230 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001234 (0x03078793) x15 0x0000000000000030 +core 0: 0x0000000080001238 (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x0000000080001238 (0x00f5053b) x10 0x0000000000000030 +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c8 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c8 0x28 +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c8 0x30 core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c8 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 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: 0x0000000080001240 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9d10e3) +core 0: 0x0000000080001244 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001244 (0xe21ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000283f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800226f8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002840 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 core 0: >>>> sprintf_putch.0 core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c9 mem 0x00000000800226f8 core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) -core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c9 0x6e +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c9 0x0a core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) -core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c9 mem 0x00000000800226f8 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: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800226f8 0x00000000800228ca 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: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002840 core 0: 0x0000000080001068 (0xff4516e3) bne 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: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a88 mem 0x00000000800226e8 core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) -core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228c8 mem 0x0000000080022720 +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228bf mem 0x00000000800226e0 core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) -core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228c8 mem 0x0000000080022718 +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228bf mem 0x00000000800226d8 core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) -core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a78 mem 0x0000000080022710 +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a88 mem 0x00000000800226d0 core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) -core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b80 mem 0x00000000800226c8 core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) -core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022780 mem 0x00000000800226c0 core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) -core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226b8 core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) -core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226b0 core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) -core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226a8 core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) -core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226a0 core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) -core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022698 core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) -core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022690 core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 -core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800226f0 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: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x00000000800228ca mem 0x00000000800226f8 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x00000000800228ca 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x00000000800228ca mem 0x00000000800226f8 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001cf0 mem 0x0000000080022718 +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 0x0000000080002b78 mem 0x0000000080022710 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022750 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001cf0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001cf0 (0x00840413) x8 0x0000000080002b80 +core 0: 0x0000000080001cf4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001cf4 (0x00890913) x18 0x0000000080002a90 +core 0: 0x0000000080001cf8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001cf8 (0x00a484b3) x9 0x00000000800228ca +core 0: 0x0000000080001cfc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001cfc (0xfd341ee3) +core 0: 0x0000000080001d00 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d00 (0x009a0663) +core 0: 0x0000000080001d04 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d04 (0x000a0513) x10 0x0000000080022780 +core 0: 0x0000000080001d08 (0xc09ff0ef) jal pc - 0x3f8 +core 0: 3 0x0000000080001d08 (0xc09ff0ef) x1 0x0000000080001d0c core 0: >>>> printstr core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) -core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x00000000800227c0 +core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022780 core 0: 0x0000000080001914 (0xf9010113) addi sp, sp, -112 -core 0: 3 0x0000000080001914 (0xf9010113) x2 0x0000000080022720 +core 0: 3 0x0000000080001914 (0xf9010113) x2 0x00000000800226e0 core 0: 0x0000000080001918 (0x03f10693) addi a3, sp, 63 -core 0: 3 0x0000000080001918 (0x03f10693) x13 0x000000008002275f +core 0: 3 0x0000000080001918 (0x03f10693) x13 0x000000008002271f core 0: 0x000000008000191c (0xfc06f693) andi a3, a3, -64 -core 0: 3 0x000000008000191c (0xfc06f693) x13 0x0000000080022740 +core 0: 3 0x000000008000191c (0xfc06f693) x13 0x0000000080022700 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: 3 0x0000000080001924 (0x00050793) x15 0x0000000080022780 core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) -core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227c1 +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022781 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022781 +core 0: 0x0000000080001930 (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 0x0000000080022782 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022782 +core 0: 0x0000000080001930 (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 0x0000000080022783 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022783 +core 0: 0x0000000080001930 (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 0x0000000080022784 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022784 +core 0: 0x0000000080001930 (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 0x0000000080022785 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022785 +core 0: 0x0000000080001930 (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 0x0000000080022786 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022786 +core 0: 0x0000000080001930 (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 0x0000000080022787 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022787 +core 0: 0x0000000080001930 (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 0x0000000080022788 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022788 +core 0: 0x0000000080001930 (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 0x0000000080022789 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022789 +core 0: 0x0000000080001930 (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 0x000000008002278a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278a +core 0: 0x0000000080001930 (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 0x000000008002278b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278b +core 0: 0x0000000080001930 (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 0x000000008002278c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278c +core 0: 0x0000000080001930 (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 0x000000008002278d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278d +core 0: 0x0000000080001930 (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 0x000000008002278e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278e +core 0: 0x0000000080001930 (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 0x000000008002278f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002278f +core 0: 0x0000000080001930 (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 0x0000000080022790 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022790 +core 0: 0x0000000080001930 (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 0x0000000080022791 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022791 +core 0: 0x0000000080001930 (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 0x0000000080022792 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022792 +core 0: 0x0000000080001930 (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 0x0000000080022793 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022793 +core 0: 0x0000000080001930 (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 0x0000000080022794 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022794 +core 0: 0x0000000080001930 (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 0x0000000080022795 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022795 +core 0: 0x0000000080001930 (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 0x0000000080022796 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022796 +core 0: 0x0000000080001930 (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 0x0000000080022797 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022797 +core 0: 0x0000000080001930 (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 0x0000000080022798 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022798 +core 0: 0x0000000080001930 (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 0x0000000080022799 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022799 +core 0: 0x0000000080001930 (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 0x000000008002279a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279a +core 0: 0x0000000080001930 (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 0x000000008002279b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279b +core 0: 0x0000000080001930 (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 0x000000008002279c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279c +core 0: 0x0000000080001930 (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 0x000000008002279d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279d +core 0: 0x0000000080001930 (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 0x000000008002279e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279e +core 0: 0x0000000080001930 (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 0x000000008002279f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002279f +core 0: 0x0000000080001930 (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 0x00000000800227a0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a0 +core 0: 0x0000000080001930 (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 0x00000000800227a1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a1 +core 0: 0x0000000080001930 (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 0x00000000800227a2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a2 +core 0: 0x0000000080001930 (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 0x00000000800227a3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a3 +core 0: 0x0000000080001930 (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 0x00000000800227a4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a4 +core 0: 0x0000000080001930 (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 0x00000000800227a5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a5 +core 0: 0x0000000080001930 (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 0x00000000800227a6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a6 +core 0: 0x0000000080001930 (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 0x00000000800227a7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a7 +core 0: 0x0000000080001930 (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 0x00000000800227a8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a8 +core 0: 0x0000000080001930 (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 0x00000000800227a9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227a9 +core 0: 0x0000000080001930 (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 0x00000000800227aa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227aa +core 0: 0x0000000080001930 (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 0x00000000800227ab +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ab +core 0: 0x0000000080001930 (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 0x00000000800227ac +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ac +core 0: 0x0000000080001930 (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 0x00000000800227ad +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ad +core 0: 0x0000000080001930 (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 0x00000000800227ae +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ae +core 0: 0x0000000080001930 (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 0x00000000800227af +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227af +core 0: 0x0000000080001930 (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 0x00000000800227b0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b0 +core 0: 0x0000000080001930 (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 0x00000000800227b1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b1 +core 0: 0x0000000080001930 (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 0x00000000800227b2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b2 +core 0: 0x0000000080001930 (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 0x00000000800227b3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b3 +core 0: 0x0000000080001930 (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 0x00000000800227b4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b4 +core 0: 0x0000000080001930 (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 0x00000000800227b5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b5 +core 0: 0x0000000080001930 (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 0x00000000800227b6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b6 +core 0: 0x0000000080001930 (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 0x00000000800227b7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b7 +core 0: 0x0000000080001930 (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 0x00000000800227b8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b8 +core 0: 0x0000000080001930 (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 0x00000000800227b9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227b9 +core 0: 0x0000000080001930 (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 0x00000000800227ba +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ba +core 0: 0x0000000080001930 (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 0x00000000800227bb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227bb +core 0: 0x0000000080001930 (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 0x00000000800227bc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227bc +core 0: 0x0000000080001930 (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 0x00000000800227bd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227bd +core 0: 0x0000000080001930 (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 0x00000000800227be +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227be +core 0: 0x0000000080001930 (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 0x00000000800227bf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227bf +core 0: 0x0000000080001930 (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 0x00000000800227c0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c0 +core 0: 0x0000000080001930 (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 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21069,61 +49584,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21135,61 +49650,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21201,61 +49716,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21267,61 +49782,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21333,61 +49848,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21399,61 +49914,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21465,61 +49980,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21531,61 +50046,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21597,61 +50112,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21663,61 +50178,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21729,61 +50244,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21795,61 +50310,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21861,61 +50376,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21927,61 +50442,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -21993,61 +50508,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22059,61 +50574,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22125,61 +50640,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22191,61 +50706,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22257,61 +50772,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22323,61 +50838,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22389,61 +50904,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22455,61 +50970,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22521,61 +51036,61 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 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 @@ -22587,433 +51102,49 @@ 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 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: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a 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: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000000 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: 3 0x000000008000193c (0x00e6b023) mem 0x0000000080022700 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: 3 0x0000000080001944 (0x00e6b423) mem 0x0000000080022708 0x0000000000000001 core 0: 0x0000000080001948 (0x00a6b823) sd a0, 16(a3) -core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x0000000080022750 0x00000000800227c0 +core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x0000000080022710 0x0000000080022780 core 0: 0x000000008000194c (0x00f6bc23) sd a5, 24(a3) -core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x0000000080022758 0x000000000000014a +core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x0000000080022718 0x000000000000014a core 0: 0x0000000080001950 (0x0330000f) fence rw,rw core 0: 3 0x0000000080001950 (0x0330000f) core 0: 0x0000000080001954 (0xbfffe717) auipc a4, 0xbfffe @@ -23023,7 +51154,7 @@ 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: 3 0x0000000080001960 (0x6ad7b223) mem 0x0000000040000000 0x0000000080022700 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 @@ -23035,15 +51166,15 @@ core 0: 3 0x0000000080001970 (0x6c07ba23) mem 0x0000000040000040 0x000000000 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: 3 0x0000000080001978 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022700 core 0: 0x000000008000197c (0x07010113) addi sp, sp, 112 -core 0: 3 0x000000008000197c (0x07010113) x2 0x0000000080022790 +core 0: 3 0x000000008000197c (0x07010113) x2 0x0000000080022750 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: 0x0000000080001d0c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d0c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d10 (0xbbdff0ef) jal pc - 0x444 +core 0: 3 0x0000000080001d10 (0xbbdff0ef) x1 0x0000000080001d14 core 0: >>>> tohost_exit core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 diff --git a/traces/without_zvfhmin.txt b/traces/without_zvfhmin.txt new file mode 100644 index 0000000..40c85c1 --- /dev/null +++ b/traces/without_zvfhmin.txt @@ -0,0 +1,24122 @@ +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 (0xd0c18193) addi gp, gp, -756 +core 0: 3 0x0000000080000144 (0xd0c18193) x3 0x0000000080002e4c +core 0: 0x0000000080000148 (0x00002217) auipc tp, 0x2 +core 0: 3 0x0000000080000148 (0x00002217) x4 0x0000000080002148 +core 0: 0x000000008000014c (0x7f720213) addi tp, tp, 2039 +core 0: 3 0x000000008000014c (0x7f720213) x4 0x000000008000293f +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002900 +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 0x0000000080022900 +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 0x0000000080002900 +core 0: 0x0000000080000174 (0x3210106f) j pc + 0x1b20 +core 0: 3 0x0000000080000174 (0x3210106f) +core 0: >>>> _init +core 0: 0x0000000080001c94 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001c94 (0xbd010113) x2 0x00000000800224d0 +core 0: 0x0000000080001c98 (0xaa418613) addi a2, gp, -1372 +core 0: 3 0x0000000080001c98 (0xaa418613) x12 0x00000000800028f0 +core 0: 0x0000000080001c9c (0xaa418793) addi a5, gp, -1372 +core 0: 3 0x0000000080001c9c (0xaa418793) x15 0x00000000800028f0 +core 0: 0x0000000080001ca0 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001ca0 (0x41413023) mem 0x00000000800228d0 0x0000000000000000 +core 0: 0x0000000080001ca4 (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001ca4 (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001ca8 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001ca8 (0x03f10a13) x20 0x000000008002250f +core 0: 0x0000000080001cac (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001cac (0x42813023) mem 0x00000000800228f0 0x0000000000000000 +core 0: 0x0000000080001cb0 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001cb0 (0x40913c23) mem 0x00000000800228e8 0x0000000000000000 +core 0: 0x0000000080001cb4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001cb4 (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001cb8 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001cb8 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001cbc (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001cbc (0x42113423) mem 0x00000000800228f8 0x0000000000000000 +core 0: 0x0000000080001cc0 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001cc0 (0x41213823) mem 0x00000000800228e0 0x0000000000000000 +core 0: 0x0000000080001cc4 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001cc4 (0x41313423) mem 0x00000000800228d8 0x0000000000000000 +core 0: 0x0000000080001cc8 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001cc8 (0x3f513c23) mem 0x00000000800228c8 0x0000000000000000 +core 0: 0x0000000080001ccc (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001ccc (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001cd0 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001cd0 (0xfc0a7a13) x20 0x0000000080022500 +core 0: 0x0000000080001cd4 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001cd4 (0x00020513) x10 0x0000000080002900 +core 0: 0x0000000080001cd8 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001cd8 (0x00020693) x13 0x0000000080002900 +core 0: 0x0000000080001cdc (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001cdc (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001ce0 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001ce4 (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001ce4 (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001ce8 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ce8 (0x00e787b3) x15 0x00000000800028f0 +core 0: 0x0000000080001cec (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001cec (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001cf0 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001cf0 (0x00e686b3) x13 0x0000000080002900 +core 0: 0x0000000080001cf4 (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001cf4 (0xfe0594e3) +core 0: 0x0000000080001cf8 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001cf8 (0x00001797) x15 0x0000000080002cf8 +core 0: 0x0000000080001cfc (0xc4c78793) addi a5, a5, -948 +core 0: 3 0x0000000080001cfc (0xc4c78793) x15 0x0000000080002944 +core 0: 0x0000000080001d00 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001d00 (0x01050533) x10 0x0000000080002900 +core 0: 0x0000000080001d04 (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001d04 (0x40c78633) x12 0x0000000000000054 +core 0: 0x0000000080001d08 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001d08 (0xf21ff0ef) x1 0x0000000080001d0c +core 0: >>>> memset +core 0: 0x0000000080001c28 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001c28 (0x00c567b3) x15 0x0000000080002954 +core 0: 0x0000000080001c2c (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001c2c (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001c30 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001c30 (0x00c50733) x14 0x0000000080002954 +core 0: 0x0000000080001c34 (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001c34 (0x02078663) +core 0: 0x0000000080001c38 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001c38 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001c3c (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001c3c (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001c40 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001c40 (0x00050793) x15 0x0000000080002900 +core 0: 0x0000000080001c44 (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001c44 (0x04e57663) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002900 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x0000000000000044 +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x0000000080002910 +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002910 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x0000000000000034 +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x0000000080002920 +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002920 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x0000000000000024 +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x0000000080002930 +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002930 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x0000000000000014 +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x0000000080002940 +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002948 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x000000000000000a +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x000000008000294a +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c48 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001c48 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001c4c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001c4c (0x020780a7) mem 0x0000000080002950 0x00 +core 0: 0x0000000080001c50 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001c50 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001c54 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c54 (0x00e787b3) x15 0x0000000080002954 +core 0: 0x0000000080001c58 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c58 (0xfe0618e3) +core 0: 0x0000000080001c5c (0x00008067) ret +core 0: 3 0x0000000080001c5c (0x00008067) +core 0: 0x0000000080001d0c (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001d0c (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001d10 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001d10 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001d14 (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001d14 (0xd29ff0ef) x1 0x0000000080001d18 +core 0: >>>> thread_entry +core 0: 0x0000000080001a3c (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001a3c (0x00051463) +core 0: 0x0000000080001a40 (0x00008067) ret +core 0: 3 0x0000000080001a40 (0x00008067) +core 0: 0x0000000080001d18 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001d18 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001d1c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001d1c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001d20 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001d20 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001d24 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001d24 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001d28 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001d28 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001d2c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001d2c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001d30 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001d30 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001d34 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001d34 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001d38 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001d38 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001d3c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001d3c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001d40 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001d40 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001d44 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001d44 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001d48 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001d48 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001d4c (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001d4c (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001d50 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001d50 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001d54 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001d54 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001d58 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001d58 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001d5c (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001d5c (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001d60 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001d60 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001d64 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001d64 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001d68 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001d68 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001d6c (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001d6c (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001d70 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001d70 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001d74 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001d74 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001d78 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001d78 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001d7c (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001d7c (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001d80 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001d80 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001d84 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001d84 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001d88 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001d88 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001d8c (0x00000513) li a0, 0 +core 0: 3 0x0000000080001d8c (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001d90 (0x490000ef) jal pc + 0x490 +core 0: 3 0x0000000080001d90 (0x490000ef) x1 0x0000000080001d94 +core 0: >>>> main +core 0: 0x0000000080002220 (0xff010113) addi sp, sp, -16 +core 0: 3 0x0000000080002220 (0xff010113) x2 0x00000000800224c0 +core 0: 0x0000000080002224 (0x00113423) sd ra, 8(sp) +core 0: 3 0x0000000080002224 (0x00113423) mem 0x00000000800224c8 0x0000000080001d94 +core 0: 0x0000000080002228 (0xdd9fe0ef) jal pc - 0x1228 +core 0: 3 0x0000000080002228 (0xdd9fe0ef) x1 0x000000008000222c +core 0: >>>> benchmark +core 0: 0x0000000080001000 (0xfd010113) addi sp, sp, -48 +core 0: 3 0x0000000080001000 (0xfd010113) x2 0x0000000080022490 +core 0: 0x0000000080001004 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001004 (0x02113423) mem 0x00000000800224b8 0x000000008000222c +core 0: 0x0000000080001008 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001008 (0x02813023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x000000008000100c (0x00913c23) sd s1, 24(sp) +core 0: 3 0x000000008000100c (0x00913c23) mem 0x00000000800224a8 0x0000000000000001 +core 0: 0x0000000080001010 (0x01213823) sd s2, 16(sp) +core 0: 3 0x0000000080001010 (0x01213823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001014 (0x01313423) sd s3, 8(sp) +core 0: 3 0x0000000080001014 (0x01313423) mem 0x0000000080022498 0x0000000000000000 +core 0: 0x0000000080001018 (0x01413023) sd s4, 0(sp) +core 0: 3 0x0000000080001018 (0x01413023) mem 0x0000000080022490 0x0000000080022500 +core 0: 0x000000008000101c (0xc00027f3) csrr a5, cycle +core 0: 3 0x000000008000101c (0xc00027f3) x15 0x0000000000000430 +core 0: 0x0000000080001020 (0x84418413) addi s0, gp, -1980 +core 0: 3 0x0000000080001020 (0x84418413) x8 0x0000000080002690 +core 0: 0x0000000080001024 (0x00001917) auipc s2, 0x1 +core 0: 3 0x0000000080001024 (0x00001917) x18 0x0000000080002024 +core 0: 0x0000000080001028 (0x62c90913) addi s2, s2, 1580 +core 0: 3 0x0000000080001028 (0x62c90913) x18 0x0000000080002650 +core 0: 0x000000008000102c (0x00090493) mv s1, s2 +core 0: 3 0x000000008000102c (0x00090493) x9 0x0000000080002650 +core 0: 0x0000000080001030 (0x00040a13) mv s4, s0 +core 0: 3 0x0000000080001030 (0x00040a13) x20 0x0000000080002690 +core 0: 0x0000000080001034 (0x00040993) mv s3, s0 +core 0: 3 0x0000000080001034 (0x00040993) x19 0x0000000080002690 +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002650 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002652 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002694 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002690 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002652 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002654 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002698 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002694 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002654 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002656 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x000000008000269c +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002698 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002656 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002658 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026a0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x000000008000269c 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002658 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000265a +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026a4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026a0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000265a +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000265c +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026a8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026a4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000265c +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000265e +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026ac +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026a8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000265e +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002660 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026b0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026ac 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002660 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002662 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026b4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026b0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002662 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002664 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026b8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026b4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002664 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002666 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026bc +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026b8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002666 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002668 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026c0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026bc 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002668 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000266a +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026c4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026c0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000266a +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000266c +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026c8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026c4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000266c +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000266e +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026cc +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026c8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000266e +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002670 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026d0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026cc 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002670 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002672 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026d4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026d0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002672 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002674 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026d8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026d4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002674 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002676 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026dc +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026d8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002676 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002678 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026e0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026dc 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002678 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000267a +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026e4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026e0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000267a +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000267c +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026e8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026e4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000267c +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000267e +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026ec +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026e8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000267e +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002680 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026f0 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026ec 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002680 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002682 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026f4 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026f0 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002682 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002684 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026f8 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026f4 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002684 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002686 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x00000000800026fc +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026f8 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002686 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002688 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002700 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x00000000800026fc 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x0000000080002688 +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000268a +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002704 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002700 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000268a +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000268c +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002708 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002704 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000268c +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x000000008000268e +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x000000008000270c +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x0000000080002708 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001038 (0x0004d783) lhu a5, 0(s1) +core 0: 3 0x0000000080001038 (0x0004d783) x15 0x0000000000000000 mem 0x000000008000268e +core 0: 0x000000008000103c (0xffff0737) lui a4, 0xffff0 +core 0: 3 0x000000008000103c (0xffff0737) x14 0xffffffffffff0000 +core 0: 0x0000000080001040 (0x00248493) addi s1, s1, 2 +core 0: 3 0x0000000080001040 (0x00248493) x9 0x0000000080002690 +core 0: 0x0000000080001044 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080001044 (0x0807c7bb) x15 0x0000000000000000 +core 0: 0x0000000080001048 (0x00f767b3) or a5, a4, a5 +core 0: 3 0x0000000080001048 (0x00f767b3) x15 0xffffffffffff0000 +core 0: 0x000000008000104c (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x000000008000104c (0xf0078553) f10 0xffffffffffff0000 +core 0: 0x0000000080001050 (0x00498993) addi s3, s3, 4 +core 0: 3 0x0000000080001050 (0x00498993) x19 0x0000000080002710 +core 0: 0x0000000080001054 (0x6a9000ef) jal pc + 0xea8 +core 0: 3 0x0000000080001054 (0x6a9000ef) x1 0x0000000080001058 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001efc (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001efc (0xe40506d3) x13 0x0000000000000000 +core 0: 0x0000000080001f00 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001f00 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001f04 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001f04 (0x0806c6bb) x13 0x0000000000000000 +core 0: 0x0000000080001f08 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001f08 (0x00a6d71b) x14 0x0000000000000000 +core 0: 0x0000000080001f0c (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001f0c (0x01f77713) x14 0x0000000000000000 +core 0: 0x0000000080001f10 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f10 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001f14 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f14 (0x01e67613) x12 0x0000000000000000 +core 0: 0x0000000080001f18 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001f18 (0x3ff6f793) x15 0x0000000000000000 +core 0: 0x0000000080001f1c (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f1c (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f20 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f20 (0x00060a63) +core 0: 0x0000000080001f34 (0x04071263) bnez a4, pc + 68 +core 0: 3 0x0000000080001f34 (0x04071263) +core 0: 0x0000000080001f38 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001f38 (0x00078c63) +core 0: 0x0000000080001f50 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001f50 (0x02979793) x15 0x0000000000000000 +core 0: 0x0000000080001f54 (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001f54 (0x0177171b) x14 0x0000000000000000 +core 0: 0x0000000080001f58 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001f58 (0x0297d793) x15 0x0000000000000000 +core 0: 0x0000000080001f5c (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001f5c (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080001f60 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001f60 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001f64 (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001f64 (0x00e6e6b3) x13 0x0000000000000000 +core 0: 0x0000000080001f68 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f68 (0x00060463) +core 0: 0x0000000080001f70 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001f70 (0xf0068553) f10 0xffffffff00000000 +core 0: 0x0000000080001f74 (0x00008067) ret +core 0: 3 0x0000000080001f74 (0x00008067) +core 0: 0x0000000080001058 (0xfea9ae27) fsw fa0, -4(s3) +core 0: 3 0x0000000080001058 (0xfea9ae27) mem 0x000000008000270c 0x00000000 +core 0: 0x000000008000105c (0xfd449ee3) bne s1, s4, pc - 36 +core 0: 3 0x000000008000105c (0xfd449ee3) +core 0: 0x0000000080001060 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001060 (0xc00027f3) x15 0x0000000000000b0f +core 0: 0x0000000080001064 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001064 (0xc00027f3) x15 0x0000000000000b18 +core 0: 0x0000000080001068 (0x8c418493) addi s1, gp, -1852 +core 0: 3 0x0000000080001068 (0x8c418493) x9 0x0000000080002710 +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002690 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002694 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002652 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002650 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002694 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002698 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002654 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002652 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002698 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x000000008000269c +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002656 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002654 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x000000008000269c +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026a0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002658 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002656 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026a0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026a4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000265a +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002658 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026a4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026a8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000265c +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000265a 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026a8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026ac +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000265e +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000265c 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026ac +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026b0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002660 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000265e 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026b0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026b4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002662 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002660 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026b4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026b8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002664 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002662 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026b8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026bc +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002666 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002664 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026bc +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026c0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002668 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002666 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026c0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026c4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000266a +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002668 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026c4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026c8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000266c +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000266a 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026c8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026cc +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000266e +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000266c 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026cc +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026d0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002670 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000266e 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026d0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026d4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002672 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002670 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026d4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026d8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002674 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002672 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026d8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026dc +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002676 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002674 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026dc +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026e0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002678 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002676 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026e0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026e4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000267a +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002678 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026e4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026e8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000267c +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000267a 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026e8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026ec +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000267e +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000267c 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026ec +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026f0 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002680 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000267e 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026f0 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026f4 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002682 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002680 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026f4 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026f8 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002684 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002682 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026f8 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x00000000800026fc +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002686 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002684 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x00000000800026fc +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002700 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002688 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002686 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002700 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002704 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000268a +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x0000000080002688 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002704 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002708 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000268c +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000268a 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x0000000080002708 +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x000000008000270c +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x000000008000268e +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000268c 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x000000008000106c (0x00042507) flw fa0, 0(s0) +core 0: 3 0x000000008000106c (0x00042507) f10 0xffffffff00000000 mem 0x000000008000270c +core 0: 0x0000000080001070 (0x00440413) addi s0, s0, 4 +core 0: 3 0x0000000080001070 (0x00440413) x8 0x0000000080002710 +core 0: 0x0000000080001074 (0x00290913) addi s2, s2, 2 +core 0: 3 0x0000000080001074 (0x00290913) x18 0x0000000080002690 +core 0: 0x0000000080001078 (0x729000ef) jal pc + 0xf28 +core 0: 3 0x0000000080001078 (0x729000ef) x1 0x000000008000107c +core 0: >>>> __truncsfhf2 +core 0: 0x0000000080001fa0 (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x0000000080001fa0 (0xe00505d3) x11 0x0000000000000000 +core 0: 0x0000000080001fa4 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001fa4 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001fa8 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080001fa8 (0x0175d71b) x14 0x0000000000000000 +core 0: 0x0000000080001fac (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080001fac (0x0ff77713) x14 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001fb0 (0x00170613) x12 0x0000000000000001 +core 0: 0x0000000080001fb4 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080001fb4 (0x02959793) x15 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080001fb8 (0x0fe67613) x12 0x0000000000000000 +core 0: 0x0000000080001fbc (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080001fbc (0x0297d693) x13 0x0000000000000000 +core 0: 0x0000000080001fc0 (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fc0 (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fc4 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080001fc4 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080001fc8 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080001fc8 (0x0267d793) x15 0x0000000000000000 +core 0: 0x0000000080001fcc (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fcc (0x10060463) +core 0: 0x00000000800020d4 (0x00071a63) bnez a4, pc + 20 +core 0: 3 0x00000000800020d4 (0x00071a63) +core 0: 0x00000000800020d8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020d8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020dc (0x06078e63) beqz a5, pc + 124 +core 0: 3 0x00000000800020dc (0x06078e63) +core 0: 0x0000000080002158 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002158 (0x00a7171b) x14 0x0000000000000000 +core 0: 0x000000008000215c (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x000000008000215c (0x3ff7f793) x15 0x0000000000000000 +core 0: 0x0000000080002160 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080002160 (0x00f76733) x14 0x0000000000000000 +core 0: 0x0000000080002164 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002164 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002168 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002168 (0x00b76733) x14 0x0000000000000000 +core 0: 0x000000008000216c (0x00068463) beqz a3, pc + 8 +core 0: 3 0x000000008000216c (0x00068463) +core 0: 0x0000000080002174 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002174 (0xf4070553) f10 0xffffffffffff0000 +core 0: 0x0000000080002178 (0x00008067) ret +core 0: 3 0x0000000080002178 (0x00008067) +core 0: 0x000000008000107c (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x000000008000107c (0xe00507d3) x15 0xffffffffffff0000 +core 0: 0x0000000080001080 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080001080 (0x01079793) x15 0xffffffff00000000 +core 0: 0x0000000080001084 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080001084 (0x4107d793) x15 0xffffffffffff0000 +core 0: 0x0000000080001088 (0xfef91f23) sh a5, -2(s2) +core 0: 3 0x0000000080001088 (0xfef91f23) mem 0x000000008000268e 0x0000 +core 0: 0x000000008000108c (0xfe9410e3) bne s0, s1, pc - 32 +core 0: 3 0x000000008000108c (0xfe9410e3) +core 0: 0x0000000080001090 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001090 (0xc00027f3) x15 0x0000000000001140 +core 0: 0x0000000080001094 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001094 (0x02813083) x1 0x000000008000222c mem 0x00000000800224b8 +core 0: 0x0000000080001098 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001098 (0x02013403) x8 0x0000000000000000 mem 0x00000000800224b0 +core 0: 0x000000008000109c (0x01813483) ld s1, 24(sp) +core 0: 3 0x000000008000109c (0x01813483) x9 0x0000000000000001 mem 0x00000000800224a8 +core 0: 0x00000000800010a0 (0x01013903) ld s2, 16(sp) +core 0: 3 0x00000000800010a0 (0x01013903) x18 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x00000000800010a4 (0x00813983) ld s3, 8(sp) +core 0: 3 0x00000000800010a4 (0x00813983) x19 0x0000000000000000 mem 0x0000000080022498 +core 0: 0x00000000800010a8 (0x00013a03) ld s4, 0(sp) +core 0: 3 0x00000000800010a8 (0x00013a03) x20 0x0000000080022500 mem 0x0000000080022490 +core 0: 0x00000000800010ac (0x03010113) addi sp, sp, 48 +core 0: 3 0x00000000800010ac (0x03010113) x2 0x00000000800224c0 +core 0: 0x00000000800010b0 (0x00008067) ret +core 0: 3 0x00000000800010b0 (0x00008067) +core 0: 0x000000008000222c (0x00813083) ld ra, 8(sp) +core 0: 3 0x000000008000222c (0x00813083) x1 0x0000000080001d94 mem 0x00000000800224c8 +core 0: 0x0000000080002230 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002230 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080002234 (0x01010113) addi sp, sp, 16 +core 0: 3 0x0000000080002234 (0x01010113) x2 0x00000000800224d0 +core 0: 0x0000000080002238 (0x00008067) ret +core 0: 3 0x0000000080002238 (0x00008067) +core 0: 0x0000000080001d94 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001d94 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001d98 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001d98 (0x000a0493) x9 0x0000000080022500 +core 0: 0x0000000080001d9c (0x9b418413) addi s0, gp, -1612 +core 0: 3 0x0000000080001d9c (0x9b418413) x8 0x0000000080002800 +core 0: 0x0000000080001da0 (0x8c418913) addi s2, gp, -1852 +core 0: 3 0x0000000080001da0 (0x8c418913) x18 0x0000000080002710 +core 0: 0x0000000080001da4 (0xaa418993) addi s3, gp, -1372 +core 0: 3 0x0000000080001da4 (0xaa418993) x19 0x00000000800028f0 +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002710 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002800 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022500 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002800 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022500 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022500 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000000001140 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022500 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022500 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002710 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022500 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022500 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022500 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022501 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022501 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022501 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022501 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022501 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022502 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022502 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022502 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022502 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022502 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022503 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022503 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022503 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022503 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022503 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022504 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022504 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022504 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022504 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022504 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022505 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022505 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022505 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022505 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022505 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022506 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022506 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022506 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022506 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022506 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022507 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022507 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022507 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022507 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022507 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022508 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022508 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022508 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022508 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022508 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022509 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022509 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022509 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022509 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022509 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250a 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022500 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022500 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002710 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002250b mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002250b 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002250b mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002800 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002808 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002718 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002250b +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002718 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002808 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002250b +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002808 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002250b +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002250b +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002250b +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002250b +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002250b +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002718 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250b 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250c 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250d 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250e 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002250f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002250f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002250f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002250f 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002250f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022510 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022510 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022510 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022510 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022510 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022511 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022511 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022511 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022511 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022511 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022512 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022512 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022512 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022512 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022512 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022513 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022513 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022513 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022513 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022513 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022514 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022514 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022514 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022514 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022514 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022515 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022515 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022515 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022515 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022515 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022516 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022516 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002250b mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002250b mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002718 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022516 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022516 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022516 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002808 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002810 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002720 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022516 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002720 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002810 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022516 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002810 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022516 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022516 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022516 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022516 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022516 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002720 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022516 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022516 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022516 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022517 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022517 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022517 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022517 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022517 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022518 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022518 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022518 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022518 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022518 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022519 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022519 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022519 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022519 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022519 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251a 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251b 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251c 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251d 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251e 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002251f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002251f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002251f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002251f 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002251f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022520 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022520 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022520 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022520 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022520 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022521 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022521 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022516 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022516 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002720 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022521 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022521 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022521 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002810 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002818 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002728 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022521 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002728 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002818 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022521 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002818 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022521 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022521 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022521 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022521 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022521 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002728 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022521 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022521 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022521 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022522 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022522 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022522 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022522 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022522 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022523 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022523 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022523 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022523 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022523 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022524 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022524 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022524 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022524 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022524 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022525 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022525 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022525 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022525 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022525 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022526 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022526 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022526 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022526 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022526 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022527 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022527 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022527 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022527 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022527 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022528 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022528 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022528 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022528 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022528 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022529 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022529 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022529 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022529 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022529 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252a 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252b 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022521 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022521 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002728 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002252c mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002252c 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002252c mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002818 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002820 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002730 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002252c +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002730 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002820 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002252c +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002820 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002252c +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002252c +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002252c +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002252c +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002252c +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002730 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252c 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252d 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252e 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002252f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002252f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002252f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002252f 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002252f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022530 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022530 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022530 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022530 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022530 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022531 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022531 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022531 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022531 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022531 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022532 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022532 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022532 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022532 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022532 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022533 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022533 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022533 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022533 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022533 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022534 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022534 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022534 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022534 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022534 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022535 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022535 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022535 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022535 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022535 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022536 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022536 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022536 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022536 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022536 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022537 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022537 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002252c mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002252c mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002730 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022537 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022537 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022537 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002820 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002828 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002738 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022537 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002738 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002828 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022537 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002828 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022537 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022537 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022537 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022537 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022537 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002738 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022537 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022537 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022537 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022538 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022538 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022538 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022538 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022538 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022539 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022539 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022539 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022539 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022539 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253a 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253b 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253c 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253d 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253e 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002253f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002253f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002253f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002253f 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002253f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022540 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022540 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022540 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022540 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022540 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022541 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022541 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022541 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022541 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022541 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022542 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022542 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022537 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022537 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002738 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022542 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022542 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022542 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002828 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002830 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002740 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022542 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002830 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022542 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002830 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022542 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022542 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022542 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022542 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022542 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002740 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022542 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022542 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022542 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022543 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022543 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022543 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022543 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022543 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022544 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022544 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022544 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022544 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022544 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022545 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022545 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022545 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022545 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022545 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022546 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022546 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022546 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022546 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022546 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022547 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022547 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022547 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022547 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022547 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022548 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022548 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022548 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022548 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022548 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022549 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022549 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022549 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022549 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022549 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254a 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254b 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254c 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022542 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022542 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002740 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002254d mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002254d 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002254d mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002830 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002838 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002748 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002254d +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002748 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002838 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002254d +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002838 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002254d +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002254d +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002254d +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002254d +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002254d +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002748 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254d 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254e 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002254f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002254f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002254f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002254f 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002254f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022550 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022550 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022550 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022550 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022550 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022551 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022551 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022551 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022551 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022551 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022552 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022552 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022552 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022552 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022552 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022553 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022553 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022553 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022553 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022553 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022554 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022554 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022554 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022554 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022554 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022555 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022555 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022555 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022555 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022555 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022556 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022556 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022556 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022556 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022556 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022557 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022557 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022557 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022557 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022557 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022558 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022558 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002254d mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002254d mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002748 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022558 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022558 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022558 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002838 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002840 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002750 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022558 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002750 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022558 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002840 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022558 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022558 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022558 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022558 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022558 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002750 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022558 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022558 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022558 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022559 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022559 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022559 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022559 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022559 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255a 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255b 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255c 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255d 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255e 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002255f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002255f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002255f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002255f 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002255f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022560 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022560 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022560 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022560 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022560 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022561 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022561 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022561 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022561 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022561 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022562 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022562 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022562 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022562 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022562 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022563 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022563 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022558 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022558 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002750 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022563 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022563 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022563 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002840 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002848 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002758 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022563 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002758 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002848 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022563 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002848 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022563 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022563 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022563 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022563 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022563 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002758 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022563 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022563 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022563 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022564 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022564 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022564 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022564 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022564 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022565 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022565 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022565 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022565 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022565 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022566 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022566 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022566 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022566 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022566 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022567 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022567 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022567 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022567 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022567 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022568 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022568 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022568 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022568 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022568 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022569 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022569 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022569 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022569 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022569 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256a 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256b 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256c 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256d 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022563 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022563 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002758 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002256e mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002256e 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002256e mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002848 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002850 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002760 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002256e +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002760 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002850 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002256e +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002850 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002256e +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002256e +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002256e +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002256e +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002256e +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002760 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256e 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002256f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002256f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002256f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002256f 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002256f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022570 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022570 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022570 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022570 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022570 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022571 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022571 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022571 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022571 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022571 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022572 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022572 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022572 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022572 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022572 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022573 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022573 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022573 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022573 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022573 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022574 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022574 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022574 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022574 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022574 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022575 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022575 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022575 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022575 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022575 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022576 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022576 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022576 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022576 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022576 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022577 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022577 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022577 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022577 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022577 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022578 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022578 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022578 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022578 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022578 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022579 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022579 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002256e mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002256e mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002760 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022579 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022579 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022579 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002850 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002858 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002768 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022579 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002768 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022579 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002858 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022579 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022579 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022579 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022579 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022579 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002768 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022579 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022579 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022579 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257a 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257b 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257c 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257d 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257e 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002257f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002257f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002257f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002257f 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002257f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022580 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022580 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022580 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022580 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022580 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022581 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022581 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022581 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022581 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022581 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022582 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022582 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022582 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022582 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022582 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022583 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022583 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022583 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022583 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022583 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022584 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022584 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022579 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022579 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002768 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022584 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022584 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022584 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002858 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002860 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002770 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022584 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002770 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002860 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022584 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002860 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022584 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022584 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022584 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022584 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022584 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002770 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022584 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022584 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022584 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022585 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022585 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022585 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022585 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022585 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022586 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022586 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022586 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022586 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022586 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022587 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022587 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022587 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022587 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022587 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022588 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022588 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022588 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022588 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022588 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022589 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022589 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022589 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022589 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022589 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258a 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258b 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258c 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258d 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258e 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002258f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002258f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022584 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022584 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002770 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002258f mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002258f 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002258f mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002860 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002868 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002778 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002258f +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002778 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002868 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002258f +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002868 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002258f +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002258f +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002258f +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002258f +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002258f +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002778 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002258f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002258f 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002258f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022590 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022590 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022590 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022590 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022590 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022591 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022591 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022591 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022591 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022591 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022592 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022592 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022592 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022592 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022592 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022593 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022593 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022593 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022593 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022593 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022594 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022594 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022594 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022594 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022594 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022595 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022595 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022595 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022595 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022595 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022596 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022596 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022596 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022596 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022596 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022597 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022597 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022597 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022597 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022597 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022598 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022598 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022598 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022598 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022598 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022599 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022599 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022599 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022599 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022599 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002258f mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002258f mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002778 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002259a mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002259a 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002259a mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002868 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002870 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002780 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002259a +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002780 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002870 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002259a +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002870 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002259a +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002259a +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002259a +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002259a +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002259a +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002780 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259a 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259b 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259c 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259d 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259e 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002259f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002259f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002259f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002259f 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002259f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a0 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a1 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a2 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a3 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a4 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002259a mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002259a mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002780 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225a5 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225a5 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225a5 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002870 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002878 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002788 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225a5 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002788 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002878 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225a5 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002878 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225a5 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225a5 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225a5 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225a5 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225a5 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002788 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a5 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a6 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a7 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a8 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225a9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225a9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225a9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225a9 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225a9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225aa +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225aa +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225aa mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225aa 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225aa mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ab +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ab +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ab mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ab 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ab mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ac +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ac +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ac mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ac 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ac mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ad +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ad +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ad mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ad 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ad mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ae +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ae +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ae mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ae 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ae mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225af +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225af +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225af mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225af 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225af mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225a5 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225a5 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002788 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225b0 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225b0 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225b0 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002878 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002880 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002790 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225b0 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002790 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002880 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225b0 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002880 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225b0 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225b0 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225b0 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225b0 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225b0 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002790 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b0 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b1 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b2 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b3 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b4 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b5 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b6 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b7 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b8 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225b9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225b9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225b9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225b9 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225b9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ba +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ba +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ba mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ba 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ba mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225bb +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225bb +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225b0 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225b0 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002790 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225bb mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225bb 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225bb mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002880 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002888 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002798 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225bb +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002798 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002888 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225bb +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002888 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225bb +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225bb +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225bb +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225bb +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225bb +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x0000000080002798 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225bb mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225bb 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225bb mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225bc +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225bc +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225bc mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225bc 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225bc mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225bd +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225bd +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225bd mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225bd 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225bd mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225be +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225be +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225be mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225be 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225be mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225bf +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225bf +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225bf mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225bf 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225bf mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c0 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c1 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c2 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c3 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c4 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c5 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225bb mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225bb mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x0000000080002798 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225c6 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225c6 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225c6 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002888 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002890 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027a0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225c6 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027a0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002890 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225c6 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002890 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225c6 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225c6 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225c6 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225c6 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225c6 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027a0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c6 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c7 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c8 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225c9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225c9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225c9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225c9 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225c9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ca +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ca +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ca mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ca 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ca mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225cb +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225cb +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225cb mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225cb 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225cb mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225cc +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225cc +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225cc mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225cc 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225cc mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225cd +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225cd +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225cd mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225cd 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225cd mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ce +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ce +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ce mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ce 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ce mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225cf +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225cf +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225cf mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225cf 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225cf mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d0 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225c6 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225c6 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027a0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225d1 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225d1 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225d1 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002890 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x0000000080002898 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027a8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225d1 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027a8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x0000000080002898 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225d1 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x0000000080002898 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225d1 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225d1 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225d1 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225d1 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225d1 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027a8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d1 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d2 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d3 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d4 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d5 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d6 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d7 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d8 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225d9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225d9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225d9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225d9 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225d9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225da +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225da +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225da mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225da 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225da mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225db +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225db +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225db mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225db 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225db mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225dc +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225dc +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225d1 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225d1 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027a8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225dc mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225dc 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225dc mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x0000000080002898 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028a0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027b0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225dc +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027b0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028a0 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225dc +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028a0 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225dc +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225dc +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225dc +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225dc +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225dc +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027b0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225dc mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225dc 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225dc mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225dd +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225dd +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225dd mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225dd 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225dd mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225de +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225de +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225de mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225de 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225de mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225df +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225df +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225df mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225df 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225df mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e0 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e1 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e2 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e3 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e4 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e5 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e6 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225dc mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225dc mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027b0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225e7 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225e7 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225e7 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028a0 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028a8 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027b8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225e7 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027b8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028a8 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225e7 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028a8 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225e7 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225e7 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225e7 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225e7 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225e7 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027b8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e7 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e8 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225e9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225e9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225e9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225e9 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225e9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ea +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ea +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ea mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ea 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ea mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225eb +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225eb +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225eb mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225eb 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225eb mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ec +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ec +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ec mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ec 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ec mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ed +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ed +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ed mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ed 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ed mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ee +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ee +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ee mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ee 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ee mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ef +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ef +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ef mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ef 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ef mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f0 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f0 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f0 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f0 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f0 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f1 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f1 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f1 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f1 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f1 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f2 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f2 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225e7 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225e7 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027b8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225f2 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225f2 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225f2 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028a8 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028b0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027c0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225f2 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027c0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028b0 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225f2 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028b0 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225f2 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225f2 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225f2 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225f2 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225f2 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027c0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f2 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f2 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f2 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f3 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f3 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f3 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f3 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f3 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f4 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f4 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f4 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f4 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f4 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f5 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f5 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f5 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f5 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f5 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f6 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f6 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f6 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f6 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f6 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f7 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f7 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f7 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f7 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f7 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f8 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f8 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f8 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f8 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f8 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225f9 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225f9 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225f9 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225f9 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225f9 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225fa +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225fa +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225fa mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225fa 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225fa mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225fb +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225fb +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225fb mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225fb 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225fb mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225fc +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225fc +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225fc mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225fc 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225fc mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225fd +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225fd +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225f2 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225f2 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027c0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x00000000800225fd mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x00000000800225fd 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x00000000800225fd mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028b0 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028b8 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027c8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x00000000800225fd +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027c8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028b8 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x00000000800225fd +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028b8 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x00000000800225fd +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x00000000800225fd +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x00000000800225fd +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x00000000800225fd +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x00000000800225fd +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027c8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225fd mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225fd 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225fd mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225fe +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225fe +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225fe mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225fe 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225fe mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x00000000800225ff +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x00000000800225ff +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x00000000800225ff mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x00000000800225ff 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x00000000800225ff mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022600 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022600 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022600 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022600 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022600 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022601 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022601 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022601 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022601 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022601 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022602 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022602 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022602 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022602 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022602 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022603 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022603 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022603 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022603 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022603 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022604 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022604 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022604 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022604 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022604 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022605 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022605 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022605 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022605 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022605 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022606 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022606 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022606 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022606 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022606 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022607 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022607 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022607 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022607 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022607 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022608 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022608 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x00000000800225fd mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x00000000800225fd mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027c8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022608 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022608 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022608 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028b8 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028c0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027d0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022608 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027d0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028c0 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022608 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028c0 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022608 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022608 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022608 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022608 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022608 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027d0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022608 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022608 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022608 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022609 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022609 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022609 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022609 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022609 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260a 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260b 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260c 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260d 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260e 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002260f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002260f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002260f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002260f 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002260f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022610 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022610 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022610 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022610 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022610 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022611 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022611 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022611 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022611 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022611 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022612 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022612 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022612 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022612 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022612 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022613 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022613 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022608 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022608 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027d0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022613 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022613 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022613 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028c0 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028c8 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027d8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022613 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027d8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028c8 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022613 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028c8 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022613 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022613 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022613 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022613 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022613 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027d8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022613 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022613 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022613 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022614 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022614 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022614 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022614 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022614 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022615 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022615 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022615 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022615 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022615 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022616 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022616 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022616 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022616 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022616 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022617 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022617 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022617 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022617 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022617 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022618 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022618 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022618 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022618 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022618 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022619 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022619 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022619 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022619 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022619 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261a 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261b 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261c 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261d 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022613 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022613 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027d8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002261e mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002261e 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002261e mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028c8 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028d0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027e0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002261e +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027e0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028d0 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002261e +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028d0 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002261e +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002261e +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002261e +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002261e +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002261e +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027e0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261e 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002261f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002261f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002261f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002261f 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002261f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022620 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022620 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022620 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022620 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022620 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022621 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022621 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022621 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022621 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022621 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022622 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022622 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022622 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022622 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022622 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022623 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022623 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022623 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022623 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022623 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022624 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022624 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022624 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022624 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022624 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022625 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022625 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022625 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022625 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022625 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022626 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022626 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022626 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022626 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022626 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022627 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022627 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022627 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022627 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022627 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022628 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022628 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022628 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022628 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022628 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022629 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022629 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002261e mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002261e mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027e0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022629 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022629 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022629 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028d0 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028d8 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027e8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022629 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027e8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028d8 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022629 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028d8 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022629 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022629 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022629 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022629 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022629 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027e8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022629 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022629 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022629 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262a 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262b 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262c 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262d 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262e 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002262f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002262f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002262f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002262f 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002262f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022630 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022630 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022630 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022630 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022630 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022631 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022631 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022631 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022631 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022631 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022632 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022632 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022632 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022632 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022632 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022633 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022633 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022633 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022633 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022633 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022634 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022634 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022629 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022629 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027e8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x0000000080022634 mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x0000000080022634 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x0000000080022634 mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028d8 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028e0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027f0 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x0000000080022634 +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027f0 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028e0 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x0000000080022634 +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028e0 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x0000000080022634 +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x0000000080022634 +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x0000000080022634 +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x0000000080022634 +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x0000000080022634 +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027f0 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022634 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022634 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022634 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022635 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022635 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022635 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022635 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022635 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022636 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022636 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022636 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022636 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022636 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022637 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022637 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022637 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022637 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022637 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022638 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022638 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022638 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022638 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022638 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022639 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022639 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022639 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022639 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022639 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263a mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263a 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263a mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263b +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263b +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263b mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263b 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263b mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263c +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263c +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263c mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263c 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263c mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263d +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263d +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263d mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263d 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263d mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263e +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263e +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263e mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263e 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263e mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002263f +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002263f +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x0000000080022634 mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x0000000080022634 mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027f0 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002263f mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002263f 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002263f mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028e0 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028e8 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x00000000800027f8 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002263f +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001da8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001da8 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027f8 +core 0: 0x0000000080001dac (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001dac (0x00043603) x12 0x0000000000000000 mem 0x00000000800028e8 +core 0: 0x0000000080001db0 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001db0 (0x00048513) x10 0x000000008002263f +core 0: 0x0000000080001db4 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001db4 (0x00000597) x11 0x0000000080001db4 +core 0: 0x0000000080001db8 (0x73458593) addi a1, a1, 1844 +core 0: 3 0x0000000080001db8 (0x73458593) x11 0x00000000800024e8 +core 0: 0x0000000080001dbc (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001dbc (0xd35ff0ef) x1 0x0000000080001dc0 +core 0: >>>> sprintf +core 0: 0x0000000080001af0 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001af0 (0xfa010113) x2 0x0000000080022470 +core 0: 0x0000000080001af4 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001af4 (0x03010313) x6 0x00000000800224a0 +core 0: 0x0000000080001af8 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001af8 (0x02813023) mem 0x0000000080022490 0x00000000800028e8 +core 0: 0x0000000080001afc (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001afc (0x00a13423) mem 0x0000000080022478 0x000000008002263f +core 0: 0x0000000080001b00 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001b00 (0x02c13823) mem 0x00000000800224a0 0x0000000000000000 +core 0: 0x0000000080001b04 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001b04 (0x02d13c23) mem 0x00000000800224a8 0x0000000000000000 +core 0: 0x0000000080001b08 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001b08 (0x00050413) x8 0x000000008002263f +core 0: 0x0000000080001b0c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001b0c (0x00058613) x12 0x00000000800024e8 +core 0: 0x0000000080001b10 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001b10 (0x00000517) x10 0x0000000080001b10 +core 0: 0x0000000080001b14 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001b14 (0x98050513) x10 0x0000000080001490 +core 0: 0x0000000080001b18 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001b18 (0x00810593) x11 0x0000000080022478 +core 0: 0x0000000080001b1c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001b1c (0x00030693) x13 0x00000000800224a0 +core 0: 0x0000000080001b20 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001b20 (0x02113423) mem 0x0000000080022498 0x0000000080001dc0 +core 0: 0x0000000080001b24 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001b24 (0x04f13423) mem 0x00000000800224b8 0x000000008002263f +core 0: 0x0000000080001b28 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001b28 (0x04e13023) mem 0x00000000800224b0 0x0000000000000000 +core 0: 0x0000000080001b2c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001b2c (0x05013823) mem 0x00000000800224c0 0x0000000000000000 +core 0: 0x0000000080001b30 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001b30 (0x05113c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001b34 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001b34 (0x00613c23) mem 0x0000000080022488 0x00000000800224a0 +core 0: 0x0000000080001b38 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001b38 (0xd7cff0ef) x1 0x0000000080001b3c +core 0: >>>> vprintfmt +core 0: 0x00000000800010b4 (0xea010113) addi sp, sp, -352 +core 0: 3 0x00000000800010b4 (0xea010113) x2 0x0000000080022310 +core 0: 0x00000000800010b8 (0x14813823) sd s0, 336(sp) +core 0: 3 0x00000000800010b8 (0x14813823) mem 0x0000000080022460 0x000000008002263f +core 0: 0x00000000800010bc (0x14913423) sd s1, 328(sp) +core 0: 3 0x00000000800010bc (0x14913423) mem 0x0000000080022458 0x000000008002263f +core 0: 0x00000000800010c0 (0x15213023) sd s2, 320(sp) +core 0: 3 0x00000000800010c0 (0x15213023) mem 0x0000000080022450 0x00000000800027f8 +core 0: 0x00000000800010c4 (0x13413823) sd s4, 304(sp) +core 0: 3 0x00000000800010c4 (0x13413823) mem 0x0000000080022440 0x0000000080022500 +core 0: 0x00000000800010c8 (0x13513423) sd s5, 296(sp) +core 0: 3 0x00000000800010c8 (0x13513423) mem 0x0000000080022438 0x0000000000000000 +core 0: 0x00000000800010cc (0x13613023) sd s6, 288(sp) +core 0: 3 0x00000000800010cc (0x13613023) mem 0x0000000080022430 0x0000000000000000 +core 0: 0x00000000800010d0 (0x11713c23) sd s7, 280(sp) +core 0: 3 0x00000000800010d0 (0x11713c23) mem 0x0000000080022428 0x0000000000000000 +core 0: 0x00000000800010d4 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x00000000800010d4 (0x14113c23) mem 0x0000000080022468 0x0000000080001b3c +core 0: 0x00000000800010d8 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x00000000800010d8 (0x13313c23) mem 0x0000000080022448 0x00000000800028f0 +core 0: 0x00000000800010dc (0x11813823) sd s8, 272(sp) +core 0: 3 0x00000000800010dc (0x11813823) mem 0x0000000080022420 0x0000000000000000 +core 0: 0x00000000800010e0 (0x11913423) sd s9, 264(sp) +core 0: 3 0x00000000800010e0 (0x11913423) mem 0x0000000080022418 0x0000000000000000 +core 0: 0x00000000800010e4 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x00000000800010e4 (0x11a13023) mem 0x0000000080022410 0x0000000000000000 +core 0: 0x00000000800010e8 (0x00050493) mv s1, a0 +core 0: 3 0x00000000800010e8 (0x00050493) x9 0x0000000080001490 +core 0: 0x00000000800010ec (0x00060413) mv s0, a2 +core 0: 3 0x00000000800010ec (0x00060413) x8 0x00000000800024e8 +core 0: 0x00000000800010f0 (0x00068b93) mv s7, a3 +core 0: 3 0x00000000800010f0 (0x00068b93) x23 0x00000000800224a0 +core 0: 0x00000000800010f4 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010f4 (0x00058913) x18 0x0000000080022478 +core 0: 0x00000000800010f8 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010f8 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010fc (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010fc (0x05500b13) x22 0x0000000000000055 +core 0: 0x0000000080001100 (0x00001a97) auipc s5, 0x1 +core 0: 3 0x0000000080001100 (0x00001a97) x21 0x0000000080002100 +core 0: 0x0000000080001104 (0x3f4a8a93) addi s5, s5, 1012 +core 0: 3 0x0000000080001104 (0x3f4a8a93) x21 0x00000000800024f4 +core 0: 0x0000000080001108 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001108 (0x0140006f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024e8 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000073 mem 0x00000000800024e9 +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024e9 +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024e9 +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ea +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x0000000080002634 +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffee60 mem 0x0000000080002634 +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x0000000080001354 +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x0000000080001354 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001354 (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224a0 +core 0: 0x0000000080001358 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001358 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x000000008000135c (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x000000008000135c (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x0000000080001360 (0x00f037b3) snez a5, a5 +core 0: 3 0x0000000080001360 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001364 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001364 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001368 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001368 (0x00f77733) x14 0x0000000000000000 +core 0: 0x000000008000136c (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x000000008000136c (0x008b8b93) x23 0x00000000800224a8 +core 0: 0x0000000080001370 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x0000000080001370 (0x0a0c0c63) +core 0: 0x0000000080001428 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001428 (0x00001c17) x24 0x0000000080002428 +core 0: 0x000000008000142c (0xe38c0c13) addi s8, s8, -456 +core 0: 3 0x000000008000142c (0xe38c0c13) x24 0x0000000080002260 +core 0: 0x0000000080001430 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001430 (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001434 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001434 (0xf40706e3) +core 0: 0x0000000080001380 (0xfff00d13) li s10, -1 +core 0: 3 0x0000000080001380 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x000000008002263f mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x000000008002263f 0x28 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x000000008002263f mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022640 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022640 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002261 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002261 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022640 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022640 0x6e +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022640 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022641 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022641 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002262 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002262 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022641 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022641 0x75 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022641 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022642 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022642 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002263 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002263 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022642 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022642 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022642 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022643 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022643 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002264 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002264 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022643 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022643 0x6c +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022643 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022644 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022644 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002265 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002265 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x0000000080001384 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001384 (0x0009c663) +core 0: 0x0000000080001390 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001390 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001394 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001394 (0x000480e7) x1 0x0000000080001398 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022644 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022644 0x29 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022644 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022645 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022645 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x0000000080001398 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001398 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002266 +core 0: 0x000000008000139c (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x000000008000139c (0x001c0c13) x24 0x0000000080002266 +core 0: 0x00000000800013a0 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800013a0 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800013a4 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800013a4 (0xfe0510e3) +core 0: 0x00000000800013a8 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800013a8 (0xd7905ae3) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ea +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024eb +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022645 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022645 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022645 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022646 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022646 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000003d mem 0x00000000800024eb +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ec +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022646 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022646 0x3d +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022646 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022647 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022647 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000020 mem 0x00000000800024ec +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024ed +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022647 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022647 0x20 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022647 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022648 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022648 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000025 mem 0x00000000800024ed +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x0000000080001124 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001124 (0x00144683) x13 0x0000000000000075 mem 0x00000000800024ee +core 0: 0x0000000080001128 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001128 (0x00140c13) x24 0x00000000800024ee +core 0: 0x000000008000112c (0xfff00993) li s3, -1 +core 0: 3 0x000000008000112c (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001130 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001130 (0x000c0713) x14 0x00000000800024ee +core 0: 0x0000000080001134 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001134 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001138 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001138 (0x02000d13) x26 0x0000000000000020 +core 0: 0x000000008000113c (0x00000613) li a2, 0 +core 0: 3 0x000000008000113c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001140 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001140 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001144 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001144 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001148 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001148 (0x00170413) x8 0x00000000800024ef +core 0: 0x000000008000114c (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x000000008000114c (0x06fb6463) +core 0: 0x0000000080001150 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001150 (0x2157c7b3) x15 0x000000008000263c +core 0: 0x0000000080001154 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001154 (0x0007a783) x15 0xffffffffffffef08 mem 0x000000008000263c +core 0: 0x0000000080001158 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001158 (0x015787b3) x15 0x00000000800013fc +core 0: 0x000000008000115c (0x00078067) jr a5 +core 0: 3 0x000000008000115c (0x00078067) +core 0: 0x00000000800013fc (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013fc (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001400 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001400 (0xf39ff06f) +core 0: 0x0000000080001338 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001338 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000133c (0x008b8793) addi a5, s7, 8 +core 0: 3 0x000000008000133c (0x008b8793) x15 0x00000000800224b0 +core 0: 0x0000000080001340 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001340 (0xf2c746e3) +core 0: 0x0000000080001344 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001344 (0xf20614e3) +core 0: 0x0000000080001348 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001348 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224a8 +core 0: 0x000000008000134c (0x00078b93) mv s7, a5 +core 0: 3 0x000000008000134c (0x00078b93) x23 0x00000000800224b0 +core 0: 0x0000000080001350 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001350 (0xf25ff06f) +core 0: 0x0000000080001274 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001274 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001278 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001278 (0x00410613) x12 0x0000000080022314 +core 0: 0x000000008000127c (0x00100793) li a5, 1 +core 0: 3 0x000000008000127c (0x00100793) x15 0x0000000000000001 +core 0: 0x0000000080001280 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x0000000080001280 (0x00b12023) mem 0x0000000080022310 0x00000000 +core 0: 0x0000000080001284 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001284 (0x16d76463) +core 0: 0x00000000800013ec (0x00000c13) li s8, 0 +core 0: 3 0x00000000800013ec (0x00000c13) x24 0x0000000000000000 +core 0: 0x00000000800013f0 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x00000000800013f0 (0xeb5ff06f) +core 0: 0x00000000800012a4 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800012a4 (0x0397d263) +core 0: 0x00000000800012c8 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x00000000800012c8 (0x202c49b3) x19 0x0000000080022310 +core 0: 0x00000000800012cc (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x00000000800012cc (0xffc10c93) x25 0x000000008002230c +core 0: 0x00000000800012d0 (0x00900c13) li s8, 9 +core 0: 3 0x00000000800012d0 (0x00900c13) x24 0x0000000000000009 +core 0: 0x00000000800012d4 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x00000000800012d4 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022310 +core 0: 0x00000000800012d8 (0x03000513) li a0, 48 +core 0: 3 0x00000000800012d8 (0x03000513) x10 0x0000000000000030 +core 0: 0x00000000800012dc (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x00000000800012dc (0x00fc7463) +core 0: 0x00000000800012e4 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x00000000800012e4 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x00000000800012e8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012e8 (0x00090593) x11 0x0000000080022478 +core 0: 0x00000000800012ec (0xffc98993) addi s3, s3, -4 +core 0: 3 0x00000000800012ec (0xffc98993) x19 0x000000008002230c +core 0: 0x00000000800012f0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012f0 (0x000480e7) x1 0x00000000800012f4 +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022648 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022648 0x30 +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022648 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x0000000080022649 +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x0000000080022649 +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x00000000800012f4 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012f4 (0xff9990e3) +core 0: 0x00000000800012f8 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012f8 (0xe25ff06f) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x000000000000000a mem 0x00000000800024ef +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001110 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001110 (0x00090593) x11 0x0000000080022478 +core 0: 0x0000000080001114 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001114 (0x00140413) x8 0x00000000800024f0 +core 0: 0x0000000080001118 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001118 (0x000480e7) x1 0x000000008000111c +core 0: >>>> sprintf_putch.0 +core 0: 0x0000000080001490 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001490 (0x0005b783) x15 0x0000000080022649 mem 0x0000000080022478 +core 0: 0x0000000080001494 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001494 (0x00a78023) mem 0x0000000080022649 0x0a +core 0: 0x0000000080001498 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001498 (0x0005b783) x15 0x0000000080022649 mem 0x0000000080022478 +core 0: 0x000000008000149c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000149c (0x00178793) x15 0x000000008002264a +core 0: 0x00000000800014a0 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800014a0 (0x00f5b023) mem 0x0000000080022478 0x000000008002264a +core 0: 0x00000000800014a4 (0x00008067) ret +core 0: 3 0x00000000800014a4 (0x00008067) +core 0: 0x000000008000111c (0x00044503) lbu a0, 0(s0) +core 0: 3 0x000000008000111c (0x00044503) x10 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001120 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001120 (0xff4516e3) +core 0: 0x000000008000110c (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x000000008000110c (0x04050a63) +core 0: 0x0000000080001160 (0x15813083) ld ra, 344(sp) +core 0: 3 0x0000000080001160 (0x15813083) x1 0x0000000080001b3c mem 0x0000000080022468 +core 0: 0x0000000080001164 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001164 (0x15013403) x8 0x000000008002263f mem 0x0000000080022460 +core 0: 0x0000000080001168 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001168 (0x14813483) x9 0x000000008002263f mem 0x0000000080022458 +core 0: 0x000000008000116c (0x14013903) ld s2, 320(sp) +core 0: 3 0x000000008000116c (0x14013903) x18 0x00000000800027f8 mem 0x0000000080022450 +core 0: 0x0000000080001170 (0x13813983) ld s3, 312(sp) +core 0: 3 0x0000000080001170 (0x13813983) x19 0x00000000800028f0 mem 0x0000000080022448 +core 0: 0x0000000080001174 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001174 (0x13013a03) x20 0x0000000080022500 mem 0x0000000080022440 +core 0: 0x0000000080001178 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001178 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022438 +core 0: 0x000000008000117c (0x12013b03) ld s6, 288(sp) +core 0: 3 0x000000008000117c (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022430 +core 0: 0x0000000080001180 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x0000000080001180 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022428 +core 0: 0x0000000080001184 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001184 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022420 +core 0: 0x0000000080001188 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001188 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022418 +core 0: 0x000000008000118c (0x10013d03) ld s10, 256(sp) +core 0: 3 0x000000008000118c (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022410 +core 0: 0x0000000080001190 (0x16010113) addi sp, sp, 352 +core 0: 3 0x0000000080001190 (0x16010113) x2 0x0000000080022470 +core 0: 0x0000000080001194 (0x00008067) ret +core 0: 3 0x0000000080001194 (0x00008067) +core 0: 0x0000000080001b3c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001b3c (0x00813783) x15 0x000000008002264a mem 0x0000000080022478 +core 0: 0x0000000080001b40 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001b40 (0x00078023) mem 0x000000008002264a 0x00 +core 0: 0x0000000080001b44 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001b44 (0x00813503) x10 0x000000008002264a mem 0x0000000080022478 +core 0: 0x0000000080001b48 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001b48 (0x02813083) x1 0x0000000080001dc0 mem 0x0000000080022498 +core 0: 0x0000000080001b4c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001b4c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001b50 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001b50 (0x02013403) x8 0x00000000800028e8 mem 0x0000000080022490 +core 0: 0x0000000080001b54 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b54 (0x06010113) x2 0x00000000800224d0 +core 0: 0x0000000080001b58 (0x00008067) ret +core 0: 3 0x0000000080001b58 (0x00008067) +core 0: 0x0000000080001dc0 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001dc0 (0x00840413) x8 0x00000000800028f0 +core 0: 0x0000000080001dc4 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001dc4 (0x00890913) x18 0x0000000080002800 +core 0: 0x0000000080001dc8 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001dc8 (0x00a484b3) x9 0x000000008002264a +core 0: 0x0000000080001dcc (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001dcc (0xfd341ee3) +core 0: 0x0000000080001dd0 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001dd0 (0x009a0663) +core 0: 0x0000000080001dd4 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001dd4 (0x000a0513) x10 0x0000000080022500 +core 0: 0x0000000080001dd8 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001dd8 (0xbf1ff0ef) x1 0x0000000080001ddc +core 0: >>>> printstr +core 0: 0x00000000800019c8 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x00000000800019c8 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022500 +core 0: 0x00000000800019cc (0xf9010113) addi sp, sp, -112 +core 0: 3 0x00000000800019cc (0xf9010113) x2 0x0000000080022460 +core 0: 0x00000000800019d0 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x00000000800019d0 (0x03f10693) x13 0x000000008002249f +core 0: 0x00000000800019d4 (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x00000000800019d4 (0xfc06f693) x13 0x0000000080022480 +core 0: 0x00000000800019d8 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x00000000800019d8 (0x00078c63) +core 0: 0x00000000800019dc (0x00050793) mv a5, a0 +core 0: 3 0x00000000800019dc (0x00050793) x15 0x0000000080022500 +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022501 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022501 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022502 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022502 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022503 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022503 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022504 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022504 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022505 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022505 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022506 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022506 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022507 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022507 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022508 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022508 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022509 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022509 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002250a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002250b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002250c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002250d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002250e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002250f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002250f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022510 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022510 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022511 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022511 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022512 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022512 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022513 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022513 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022514 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022514 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022515 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022515 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022516 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022516 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022517 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022517 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022518 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022518 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022519 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022519 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002251a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002251b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002251c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002251d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002251e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002251f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002251f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022520 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022520 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022521 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022521 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022522 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022522 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022523 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022523 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022524 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022524 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022525 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022525 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022526 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022526 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022527 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022527 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022528 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022528 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022529 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022529 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002252a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002252b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002252c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002252d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002252e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002252f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002252f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022530 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022530 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022531 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022531 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022532 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022532 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022533 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022533 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022534 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022534 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022535 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022535 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022536 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022536 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022537 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022537 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022538 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022538 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022539 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022539 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002253a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002253b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002253c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002253d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002253e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002253f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002253f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022540 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022540 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022541 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022541 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022542 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022542 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022543 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022543 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022544 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022544 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022545 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022545 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022546 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022546 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022547 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022547 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022548 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022548 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022549 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022549 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002254a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002254b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002254c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002254d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002254e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002254f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002254f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022550 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022550 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022551 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022551 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022552 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022552 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022553 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022553 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022554 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022554 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022555 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022555 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022556 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022556 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022557 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022557 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022558 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022558 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022559 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022559 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002255a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002255b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002255c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002255d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002255e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002255f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002255f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022560 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022560 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022561 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022561 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022562 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022562 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022563 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022563 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022564 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022564 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022565 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022565 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022566 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022566 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022567 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022567 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022568 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022568 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022569 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022569 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002256a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002256b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002256c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002256d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002256e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002256f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002256f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022570 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022570 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022571 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022571 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022572 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022572 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022573 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022573 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022574 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022574 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022575 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022575 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022576 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022576 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022577 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022577 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022578 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022578 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022579 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022579 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002257a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002257b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002257c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002257d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002257e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002257f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002257f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022580 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022580 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022581 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022581 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022582 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022582 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022583 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022583 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022584 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022584 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022585 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022585 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022586 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022586 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022587 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022587 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022588 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022588 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022589 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022589 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002258a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002258b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002258c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002258d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002258e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002258f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002258f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022590 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022590 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022591 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022591 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022592 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022592 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022593 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022593 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022594 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022594 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022595 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022595 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022596 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022596 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022597 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022597 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022598 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022598 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022599 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022599 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002259a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002259b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002259c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002259d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002259e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002259f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002259f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225a0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225a1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225a2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225a3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225a4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225a5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225a6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225a7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225a8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225a9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225a9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225aa +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225aa +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ab +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ab +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225ac +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ac +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ad +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ad +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225ae +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ae +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225af +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225af +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225b0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225b1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225b2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225b3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225b4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225b5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225b6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225b7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225b8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225b9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225b9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225ba +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ba +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225bb +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225bb +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225bc +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225bc +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225bd +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225bd +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225be +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225be +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225bf +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225bf +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225c0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225c1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225c2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225c3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225c4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225c5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225c6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225c7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225c8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225c9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225c9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225ca +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ca +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225cb +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225cb +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225cc +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225cc +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225cd +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225cd +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ce +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ce +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225cf +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225cf +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225d0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225d1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225d2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225d3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225d4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225d5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225d6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225d7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225d8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225d9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225d9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225da +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225da +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225db +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225db +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225dc +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225dc +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225dd +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225dd +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225de +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225de +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225df +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225df +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225e0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225e1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225e2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225e3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225e4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225e5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225e6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225e7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225e8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225e9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225e9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225ea +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ea +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225eb +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225eb +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225ec +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ec +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ed +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ed +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225ee +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ee +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ef +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ef +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225f0 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f0 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225f1 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f1 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225f2 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f2 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225f3 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f3 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225f4 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f4 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225f5 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f5 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225f6 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f6 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225f7 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f7 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225f8 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f8 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225f9 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225f9 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225fa +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225fa +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225fb +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225fb +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225fc +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225fc +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225fd +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225fd +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225fe +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225fe +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225ff +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x00000000800225ff +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022600 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022600 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022601 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022601 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022602 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022602 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022603 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022603 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022604 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022604 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022605 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022605 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022606 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022606 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022607 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022607 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022608 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022608 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022609 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022609 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002260a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002260b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002260c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002260d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002260e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002260f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002260f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022610 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022610 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022611 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022611 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022612 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022612 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022613 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022613 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022614 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022614 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022615 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022615 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022616 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022616 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022617 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022617 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022618 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022618 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022619 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022619 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002261a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002261b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002261c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002261d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002261e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002261f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002261f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022620 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022620 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022621 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022621 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022622 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022622 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022623 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022623 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022624 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022624 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022625 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022625 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022626 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022626 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022627 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022627 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022628 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022628 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022629 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022629 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x000000008002262a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002262b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002262c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x000000008002262d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002262e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002262f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002262f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022630 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022630 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022631 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022631 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022632 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022632 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022633 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022633 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022634 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022634 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022635 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022635 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022636 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022636 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022637 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022637 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022638 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022638 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022639 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022639 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002263a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x000000008002263b +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263b +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002263c +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263c +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002263d +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263d +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x000000008002263e +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263e +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002263f +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002263f +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022640 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022640 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022641 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022641 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022642 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022642 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022643 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022643 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022644 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022644 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022645 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022645 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022646 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022646 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022647 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022647 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022648 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022648 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022649 +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x0000000080022649 +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019e0 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x00000000800019e0 (0x0017c703) x14 0x0000000000000000 mem 0x000000008002264a +core 0: 0x00000000800019e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800019e4 (0x00178793) x15 0x000000008002264a +core 0: 0x00000000800019e8 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x00000000800019e8 (0xfe071ce3) +core 0: 0x00000000800019ec (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x00000000800019ec (0x40a787b3) x15 0x000000000000014a +core 0: 0x00000000800019f0 (0x04000713) li a4, 64 +core 0: 3 0x00000000800019f0 (0x04000713) x14 0x0000000000000040 +core 0: 0x00000000800019f4 (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x00000000800019f4 (0x00e6b023) mem 0x0000000080022480 0x0000000000000040 +core 0: 0x00000000800019f8 (0x00100713) li a4, 1 +core 0: 3 0x00000000800019f8 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800019fc (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x00000000800019fc (0x00e6b423) mem 0x0000000080022488 0x0000000000000001 +core 0: 0x0000000080001a00 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001a00 (0x00a6b823) mem 0x0000000080022490 0x0000000080022500 +core 0: 0x0000000080001a04 (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x0000000080001a04 (0x00f6bc23) mem 0x0000000080022498 0x000000000000014a +core 0: 0x0000000080001a08 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001a08 (0x0330000f) +core 0: 0x0000000080001a0c (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001a0c (0xbfffe717) x14 0x000000003ffffa0c +core 0: 0x0000000080001a10 (0x63470713) addi a4, a4, 1588 +core 0: 3 0x0000000080001a10 (0x63470713) x14 0x0000000040000040 +core 0: 0x0000000080001a14 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001a14 (0xbfffe797) x15 0x000000003ffffa14 +core 0: 0x0000000080001a18 (0x5ed7b623) sd a3, 1516(a5) +core 0: 3 0x0000000080001a18 (0x5ed7b623) mem 0x0000000040000000 0x0000000080022480 +core 0: 0x0000000080001a1c (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001a1c (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001a20 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001a20 (0xfe078ee3) +core 0: 0x0000000080001a24 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001a24 (0xbfffe797) x15 0x000000003ffffa24 +core 0: 0x0000000080001a28 (0x6007be23) sd zero, 1564(a5) +core 0: 3 0x0000000080001a28 (0x6007be23) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001a2c (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001a2c (0x0330000f) +core 0: 0x0000000080001a30 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x0000000080001a30 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022480 +core 0: 0x0000000080001a34 (0x07010113) addi sp, sp, 112 +core 0: 3 0x0000000080001a34 (0x07010113) x2 0x00000000800224d0 +core 0: 0x0000000080001a38 (0x00008067) ret +core 0: 3 0x0000000080001a38 (0x00008067) +core 0: 0x0000000080001ddc (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001ddc (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001de0 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001de0 (0xba5ff0ef) x1 0x0000000080001de4 +core 0: >>>> tohost_exit +core 0: 0x0000000080001984 (0x00151793) slli a5, a0, 1 +core 0: 3 0x0000000080001984 (0x00151793) x15 0x0000000000000000 +core 0: 0x0000000080001988 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x0000000080001988 (0x0017e793) x15 0x0000000000000001 +core 0: 0x000000008000198c (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x000000008000198c (0xbfffe717) x14 0x000000003ffff98c +core 0: 0x0000000080001990 (0x66f73a23) sd a5, 1652(a4) +core 0: 3 0x0000000080001990 (0x66f73a23) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x0000000080001994 (0x0000006f) j pc + 0x0 +core 0: 3 0x0000000080001994 (0x0000006f) diff --git a/traces/without_zvfhmin_but_zfhmin.txt b/traces/without_zvfhmin_but_zfhmin.txt new file mode 100644 index 0000000..30f8394 --- /dev/null +++ b/traces/without_zvfhmin_but_zfhmin.txt @@ -0,0 +1,20756 @@ +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 (0x99418193) addi gp, gp, -1644 +core 0: 3 0x0000000080000144 (0x99418193) x3 0x0000000080002ad4 +core 0: 0x0000000080000148 (0x00002217) auipc tp, 0x2 +core 0: 3 0x0000000080000148 (0x00002217) x4 0x0000000080002148 +core 0: 0x000000008000014c (0x47720213) addi tp, tp, 1143 +core 0: 3 0x000000008000014c (0x47720213) x4 0x00000000800025bf +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002580 +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 0x0000000080022580 +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 0x0000000080002580 +core 0: 0x0000000080000174 (0x2cd0106f) j pc + 0x1acc +core 0: 3 0x0000000080000174 (0x2cd0106f) +core 0: >>>> _init +core 0: 0x0000000080001c40 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001c40 (0xbd010113) x2 0x0000000080022150 +core 0: 0x0000000080001c44 (0xaac18613) addi a2, gp, -1364 +core 0: 3 0x0000000080001c44 (0xaac18613) x12 0x0000000080002580 +core 0: 0x0000000080001c48 (0xaac18793) addi a5, gp, -1364 +core 0: 3 0x0000000080001c48 (0xaac18793) x15 0x0000000080002580 +core 0: 0x0000000080001c4c (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001c4c (0x41413023) mem 0x0000000080022550 0x0000000000000000 +core 0: 0x0000000080001c50 (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001c50 (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001c54 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001c54 (0x03f10a13) x20 0x000000008002218f +core 0: 0x0000000080001c58 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001c58 (0x42813023) mem 0x0000000080022570 0x0000000000000000 +core 0: 0x0000000080001c5c (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001c5c (0x40913c23) mem 0x0000000080022568 0x0000000000000000 +core 0: 0x0000000080001c60 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001c60 (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c64 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c64 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c68 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c68 (0x42113423) mem 0x0000000080022578 0x0000000000000000 +core 0: 0x0000000080001c6c (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c6c (0x41213823) mem 0x0000000080022560 0x0000000000000000 +core 0: 0x0000000080001c70 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c70 (0x41313423) mem 0x0000000080022558 0x0000000000000000 +core 0: 0x0000000080001c74 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c74 (0x3f513c23) mem 0x0000000080022548 0x0000000000000000 +core 0: 0x0000000080001c78 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c78 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c7c (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c7c (0xfc0a7a13) x20 0x0000000080022180 +core 0: 0x0000000080001c80 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c80 (0x00020513) x10 0x0000000080002580 +core 0: 0x0000000080001c84 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c84 (0x00020693) x13 0x0000000080002580 +core 0: 0x0000000080001c88 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c88 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c8c (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c8c (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c90 (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c90 (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c94 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c94 (0x00e787b3) x15 0x0000000080002580 +core 0: 0x0000000080001c98 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c98 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c9c (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c9c (0x00e686b3) x13 0x0000000080002580 +core 0: 0x0000000080001ca0 (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001ca0 (0xfe0594e3) +core 0: 0x0000000080001ca4 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001ca4 (0x00001797) x15 0x0000000080002ca4 +core 0: 0x0000000080001ca8 (0x92078793) addi a5, a5, -1760 +core 0: 3 0x0000000080001ca8 (0x92078793) x15 0x00000000800025c4 +core 0: 0x0000000080001cac (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001cac (0x01050533) x10 0x0000000080002580 +core 0: 0x0000000080001cb0 (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001cb0 (0x40c78633) x12 0x0000000000000044 +core 0: 0x0000000080001cb4 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001cb4 (0xf21ff0ef) x1 0x0000000080001cb8 +core 0: >>>> memset +core 0: 0x0000000080001bd4 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001bd4 (0x00c567b3) x15 0x00000000800025c4 +core 0: 0x0000000080001bd8 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001bd8 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001bdc (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001bdc (0x00c50733) x14 0x00000000800025c4 +core 0: 0x0000000080001be0 (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001be0 (0x02078663) +core 0: 0x0000000080001be4 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001be4 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001be8 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001be8 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001bec (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001bec (0x00050793) x15 0x0000000080002580 +core 0: 0x0000000080001bf0 (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001bf0 (0x04e57663) +core 0: 0x0000000080001bf4 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bf4 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001bf8 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001bf8 (0x020780a7) mem 0x0000000080002580 0x00 +core 0: 0x0000000080001bfc (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001bfc (0x40e60633) x12 0x0000000000000034 +core 0: 0x0000000080001c00 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c00 (0x00e787b3) x15 0x0000000080002590 +core 0: 0x0000000080001c04 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c04 (0xfe0618e3) +core 0: 0x0000000080001bf4 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bf4 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001bf8 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001bf8 (0x020780a7) mem 0x0000000080002590 0x00 +core 0: 0x0000000080001bfc (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001bfc (0x40e60633) x12 0x0000000000000024 +core 0: 0x0000000080001c00 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c00 (0x00e787b3) x15 0x00000000800025a0 +core 0: 0x0000000080001c04 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c04 (0xfe0618e3) +core 0: 0x0000000080001bf4 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bf4 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001bf8 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001bf8 (0x020780a7) mem 0x00000000800025a0 0x00 +core 0: 0x0000000080001bfc (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001bfc (0x40e60633) x12 0x0000000000000014 +core 0: 0x0000000080001c00 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c00 (0x00e787b3) x15 0x00000000800025b0 +core 0: 0x0000000080001c04 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c04 (0xfe0618e3) +core 0: 0x0000000080001bf4 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bf4 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001bf8 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001bf8 (0x020780a7) mem 0x00000000800025b8 0x00 +core 0: 0x0000000080001bfc (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001bfc (0x40e60633) x12 0x000000000000000a +core 0: 0x0000000080001c00 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c00 (0x00e787b3) x15 0x00000000800025ba +core 0: 0x0000000080001c04 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c04 (0xfe0618e3) +core 0: 0x0000000080001bf4 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001bf4 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001bf8 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001bf8 (0x020780a7) mem 0x00000000800025c0 0x00 +core 0: 0x0000000080001bfc (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001bfc (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c00 (0x00e787b3) x15 0x00000000800025c4 +core 0: 0x0000000080001c04 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001c04 (0xfe0618e3) +core 0: 0x0000000080001c08 (0x00008067) ret +core 0: 3 0x0000000080001c08 (0x00008067) +core 0: 0x0000000080001cb8 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001cb8 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001cbc (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001cbc (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001cc0 (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001cc0 (0xd29ff0ef) x1 0x0000000080001cc4 +core 0: >>>> thread_entry +core 0: 0x00000000800019e8 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x00000000800019e8 (0x00051463) +core 0: 0x00000000800019ec (0x00008067) ret +core 0: 3 0x00000000800019ec (0x00008067) +core 0: 0x0000000080001cc4 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001cc4 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001cc8 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001cc8 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001ccc (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001ccc (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001cd0 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001cd0 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001cd4 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001cd4 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001cd8 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001cd8 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001cdc (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001cdc (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001ce0 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001ce0 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001ce4 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001ce4 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001ce8 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001ce8 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001cec (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001cec (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001cf0 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001cf0 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001cf4 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001cf4 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001cf8 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001cf8 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001cfc (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001cfc (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001d00 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001d00 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001d04 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001d04 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001d08 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001d08 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001d0c (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001d0c (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001d10 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001d10 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001d14 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001d14 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001d18 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001d18 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001d1c (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001d1c (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001d20 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001d20 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001d24 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001d24 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001d28 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001d28 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001d2c (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001d2c (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001d30 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001d30 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001d34 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001d34 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001d38 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001d38 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001d3c (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001d3c (0x16c000ef) x1 0x0000000080001d40 +core 0: >>>> main +core 0: 0x0000000080001ea8 (0xff010113) addi sp, sp, -16 +core 0: 3 0x0000000080001ea8 (0xff010113) x2 0x0000000080022140 +core 0: 0x0000000080001eac (0x00113423) sd ra, 8(sp) +core 0: 3 0x0000000080001eac (0x00113423) mem 0x0000000080022148 0x0000000080001d40 +core 0: 0x0000000080001eb0 (0x950ff0ef) jal pc - 0xeb0 +core 0: 3 0x0000000080001eb0 (0x950ff0ef) x1 0x0000000080001eb4 +core 0: >>>> benchmark +core 0: 0x0000000080001000 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001000 (0xc00027f3) x15 0x00000000000003e7 +core 0: 0x0000000080001004 (0x84c18793) addi a5, gp, -1972 +core 0: 3 0x0000000080001004 (0x84c18793) x15 0x0000000080002320 +core 0: 0x0000000080001008 (0x00001697) auipc a3, 0x1 +core 0: 3 0x0000000080001008 (0x00001697) x13 0x0000000080002008 +core 0: 0x000000008000100c (0x2d868693) addi a3, a3, 728 +core 0: 3 0x000000008000100c (0x2d868693) x13 0x00000000800022e0 +core 0: 0x0000000080001010 (0x00068713) mv a4, a3 +core 0: 3 0x0000000080001010 (0x00068713) x14 0x00000000800022e0 +core 0: 0x0000000080001014 (0x00078593) mv a1, a5 +core 0: 3 0x0000000080001014 (0x00078593) x11 0x0000000080002320 +core 0: 0x0000000080001018 (0x00078613) mv a2, a5 +core 0: 3 0x0000000080001018 (0x00078613) x12 0x0000000080002320 +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022e0 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022e2 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002324 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002320 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022e2 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022e4 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002328 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002324 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022e4 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022e6 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000232c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002328 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022e6 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022e8 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002330 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000232c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022e8 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022ea +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002334 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002330 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022ea +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022ec +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002338 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002334 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022ec +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022ee +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000233c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002338 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022ee +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022f0 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002340 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000233c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022f0 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022f2 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002344 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002340 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022f2 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022f4 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002348 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002344 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022f4 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022f6 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000234c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002348 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022f6 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022f8 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002350 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000234c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022f8 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022fa +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002354 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002350 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022fa +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022fc +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002358 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002354 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022fc +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x00000000800022fe +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000235c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002358 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x00000000800022fe +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002300 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002360 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000235c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002300 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002302 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002364 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002360 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002302 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002304 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002368 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002364 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002304 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002306 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000236c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002368 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002306 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002308 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002370 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000236c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002308 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000230a +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002374 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002370 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000230a +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000230c +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002378 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002374 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000230c +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000230e +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000237c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002378 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000230e +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002310 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002380 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000237c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002310 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002312 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002384 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002380 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002312 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002314 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002388 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002384 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002314 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002316 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000238c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002388 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002316 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002318 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002390 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000238c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x0000000080002318 +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000231a +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002394 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002390 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000231a +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000231c +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x0000000080002398 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002394 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000231c +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x000000008000231e +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x000000008000239c +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x0000000080002398 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x000000008000101c (0x00071787) flh fa5, 0(a4) +core 0: 3 0x000000008000101c (0x00071787) f15 0xffffffffffff0000 mem 0x000000008000231e +core 0: 0x0000000080001020 (0x00270713) addi a4, a4, 2 +core 0: 3 0x0000000080001020 (0x00270713) x14 0x0000000080002320 +core 0: 0x0000000080001024 (0x00460613) addi a2, a2, 4 +core 0: 3 0x0000000080001024 (0x00460613) x12 0x00000000800023a0 +core 0: 0x0000000080001028 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001028 (0x402787d3) f15 0xffffffff00000000 +core 0: 0x000000008000102c (0xfef62e27) fsw fa5, -4(a2) +core 0: 3 0x000000008000102c (0xfef62e27) mem 0x000000008000239c 0x00000000 +core 0: 0x0000000080001030 (0xfeb716e3) bne a4, a1, pc - 20 +core 0: 3 0x0000000080001030 (0xfeb716e3) +core 0: 0x0000000080001034 (0xc0002773) csrr a4, cycle +core 0: 3 0x0000000080001034 (0xc0002773) x14 0x0000000000000537 +core 0: 0x0000000080001038 (0xc0002773) csrr a4, cycle +core 0: 3 0x0000000080001038 (0xc0002773) x14 0x0000000000000540 +core 0: 0x000000008000103c (0x8cc18713) addi a4, gp, -1844 +core 0: 3 0x000000008000103c (0x8cc18713) x14 0x00000000800023a0 +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002320 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002324 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022e2 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022e0 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002324 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002328 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022e4 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022e2 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002328 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000232c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022e6 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022e4 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000232c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002330 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022e8 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022e6 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002330 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002334 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022ea +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022e8 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002334 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002338 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022ec +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022ea 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002338 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000233c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022ee +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022ec 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000233c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002340 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022f0 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022ee 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002340 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002344 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022f2 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022f0 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002344 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002348 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022f4 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022f2 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002348 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000234c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022f6 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022f4 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000234c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002350 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022f8 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022f6 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002350 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002354 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022fa +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022f8 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002354 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002358 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022fc +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022fa 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002358 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000235c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x00000000800022fe +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022fc 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000235c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002360 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002300 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x00000000800022fe 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002360 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002364 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002302 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002300 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002364 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002368 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002304 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002302 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002368 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000236c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002306 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002304 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000236c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002370 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002308 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002306 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002370 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002374 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000230a +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002308 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002374 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002378 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000230c +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000230a 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002378 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000237c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000230e +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000230c 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000237c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002380 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002310 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000230e 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002380 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002384 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002312 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002310 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002384 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002388 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002314 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002312 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002388 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000238c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002316 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002314 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000238c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002390 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002318 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002316 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002390 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002394 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000231a +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x0000000080002318 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002394 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x0000000080002398 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000231c +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000231a 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x0000000080002398 +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x000000008000239c +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x000000008000231e +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000231c 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001040 (0x0007a787) flw fa5, 0(a5) +core 0: 3 0x0000000080001040 (0x0007a787) f15 0xffffffff00000000 mem 0x000000008000239c +core 0: 0x0000000080001044 (0x00478793) addi a5, a5, 4 +core 0: 3 0x0000000080001044 (0x00478793) x15 0x00000000800023a0 +core 0: 0x0000000080001048 (0x00268693) addi a3, a3, 2 +core 0: 3 0x0000000080001048 (0x00268693) x13 0x0000000080002320 +core 0: 0x000000008000104c (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x000000008000104c (0x4407f7d3) f15 0xffffffffffff0000 +core 0: 0x0000000080001050 (0xfef69f27) fsh fa5, -2(a3) +core 0: 3 0x0000000080001050 (0xfef69f27) mem 0x000000008000231e 0x0000 +core 0: 0x0000000080001054 (0xfee796e3) bne a5, a4, pc - 20 +core 0: 3 0x0000000080001054 (0xfee796e3) +core 0: 0x0000000080001058 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001058 (0xc00027f3) x15 0x00000000000006b5 +core 0: 0x000000008000105c (0x00008067) ret +core 0: 3 0x000000008000105c (0x00008067) +core 0: 0x0000000080001eb4 (0x00813083) ld ra, 8(sp) +core 0: 3 0x0000000080001eb4 (0x00813083) x1 0x0000000080001d40 mem 0x0000000080022148 +core 0: 0x0000000080001eb8 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001eb8 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ebc (0x01010113) addi sp, sp, 16 +core 0: 3 0x0000000080001ebc (0x01010113) x2 0x0000000080022150 +core 0: 0x0000000080001ec0 (0x00008067) ret +core 0: 3 0x0000000080001ec0 (0x00008067) +core 0: 0x0000000080001d40 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001d40 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001d44 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001d44 (0x000a0493) x9 0x0000000080022180 +core 0: 0x0000000080001d48 (0x9bc18413) addi s0, gp, -1604 +core 0: 3 0x0000000080001d48 (0x9bc18413) x8 0x0000000080002490 +core 0: 0x0000000080001d4c (0x8cc18913) addi s2, gp, -1844 +core 0: 3 0x0000000080001d4c (0x8cc18913) x18 0x00000000800023a0 +core 0: 0x0000000080001d50 (0xaac18993) addi s3, gp, -1364 +core 0: 3 0x0000000080001d50 (0xaac18993) x19 0x0000000080002580 +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002490 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022180 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002490 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022180 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022180 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000000006b5 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x00000000800023a0 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022180 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022180 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023a0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022180 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022180 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022180 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022181 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022181 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022181 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022181 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022181 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022182 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022182 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022182 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022182 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022182 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022183 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022183 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022183 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022183 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022183 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022184 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022184 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022184 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022184 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022184 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022185 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022185 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022185 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022185 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022185 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022186 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022186 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022186 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022186 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022186 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022187 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022187 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022187 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022187 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022187 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022188 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022188 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022188 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022188 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022188 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022189 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022189 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022189 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022189 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022189 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218a 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022180 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022180 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023a0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002218b 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002490 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002498 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023a8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002218b +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002498 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002218b +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002498 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002218b +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002218b +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002218b +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002218b +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002218b +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023a8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218b 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218c 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218d 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218e 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002218f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002218f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002218f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002218f 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002218f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022190 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022190 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022190 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022190 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022190 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022191 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022191 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022191 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022191 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022191 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022192 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022192 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022192 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022192 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022192 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022193 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022193 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022193 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022193 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022193 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022194 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022194 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022194 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022194 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022194 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022195 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022195 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022195 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022195 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022195 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022196 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022196 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002218b mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002218b mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023a8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022196 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002498 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024a0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023b0 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022196 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022196 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024a0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022196 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022196 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022196 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022196 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022196 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023b0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022196 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022196 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022197 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022197 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022197 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022197 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022197 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022198 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022198 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022198 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022198 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022198 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022199 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022199 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022199 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022199 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022199 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219a 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219b 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219c 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219d 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219e 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002219f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002219f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002219f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002219f 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002219f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a0 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022196 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022196 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023b0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221a1 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024a0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024a8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023b8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221a1 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221a1 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024a8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221a1 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221a1 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221a1 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221a1 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221a1 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023b8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a1 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a2 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a3 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a4 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a5 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a6 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a7 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a8 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221a9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221a9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221a9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221a9 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221a9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221aa +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221aa +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221aa mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221aa 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221aa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ab +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ab +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ab mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ab 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ab mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ac +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ac +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221a1 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221a1 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023b8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221ac 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024a8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024b0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023c0 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221ac +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221ac +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024b0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221ac +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221ac +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221ac +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221ac +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221ac +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023c0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ac 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ac mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ad +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ad +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ad mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ad 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ad mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ae +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ae +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ae mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ae 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ae mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221af +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221af +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221af mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221af 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221af mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b0 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b1 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b2 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b3 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b4 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b5 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b6 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221ac mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221ac mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023c0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221b7 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024b0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024b8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023c8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221b7 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221b7 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024b8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221b7 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221b7 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221b7 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221b7 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221b7 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023c8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b7 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b8 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221b9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221b9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221b9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221b9 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221b9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ba +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ba +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ba mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ba 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ba mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221bb +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bb +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221bb mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221bb 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221bc +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bc +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221bc mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221bc 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221bd +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bd +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221bd mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221bd 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221be +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221be +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221be mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221be 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221be mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221bf +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221bf +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221bf mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221bf 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221bf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c0 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c1 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221b7 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221b7 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023c8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221c2 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024b8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024c0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023d0 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221c2 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221c2 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024c0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221c2 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221c2 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221c2 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221c2 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221c2 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023d0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c2 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c3 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c4 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c5 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c6 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c7 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c8 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221c9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221c9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221c9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221c9 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221c9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ca +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ca +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ca mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ca 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ca mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221cb +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cb +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221cb mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221cb 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221cc +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cc +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221cc mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221cc 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221cd +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cd +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221c2 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221c2 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023d0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221cd 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024c0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024c8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023d8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221cd +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221cd +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024c8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221cd +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221cd +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221cd +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221cd +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221cd +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023d8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221cd 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ce +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ce +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ce mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ce 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ce mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221cf +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221cf +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221cf mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221cf 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221cf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d0 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d1 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d2 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d3 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d4 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d5 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d6 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d7 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221cd mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221cd mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023d8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221d8 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024c8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024d0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023e0 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221d8 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221d8 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024d0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221d8 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221d8 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221d8 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221d8 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221d8 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023e0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d8 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221d9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221d9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221d9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221d9 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221d9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221da +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221da +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221da mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221da 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221da mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221db +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221db +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221db mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221db 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221db mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221dc +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221dc +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221dc mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221dc 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221dc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221dd +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221dd +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221dd mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221dd 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221dd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221de +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221de +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221de mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221de 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221de mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221df +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221df +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221df mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221df 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221df mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e0 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e1 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e2 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221d8 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221d8 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023e0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221e3 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024d0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024d8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023e8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221e3 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221e3 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024d8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221e3 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221e3 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221e3 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221e3 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221e3 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023e8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e3 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e4 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e5 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e6 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e7 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e8 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221e9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221e9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221e9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221e9 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221e9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ea +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ea +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ea mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ea 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ea mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221eb +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221eb +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221eb mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221eb 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221eb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ec +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ec +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ec mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ec 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ec mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ed +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ed +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ed mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ed 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ed mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ee +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ee +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221e3 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221e3 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023e8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221ee 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024d8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024e0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023f0 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221ee +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f0 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221ee +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024e0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221ee +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221ee +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221ee +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221ee +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221ee +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023f0 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ee 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ee mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ef +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ef +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ef mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ef 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ef mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f0 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f1 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f2 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f3 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f4 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f5 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f6 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f7 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f8 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221f9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221f9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221ee mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221ee mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023f0 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800221f9 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024e0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024e8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x00000000800023f8 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800221f9 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f8 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800221f9 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024e8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800221f9 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800221f9 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800221f9 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800221f9 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800221f9 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x00000000800023f8 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221f9 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221f9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221fa +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fa +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221fa mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221fa 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221fb +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fb +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221fb mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221fb 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221fc +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fc +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221fc mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221fc 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221fd +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fd +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221fd mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221fd 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221fe +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221fe +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221fe mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221fe 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221fe mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800221ff +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800221ff +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800221ff mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800221ff 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800221ff mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022200 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022200 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022200 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022200 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022200 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022201 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022201 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022201 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022201 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022201 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022202 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022202 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022202 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022202 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022202 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022203 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022203 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022203 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022203 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022203 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022204 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022204 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800221f9 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800221f9 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x00000000800023f8 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022204 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024e8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024f0 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002400 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022204 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002400 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022204 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024f0 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022204 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022204 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022204 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022204 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022204 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002400 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022204 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022204 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022205 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022205 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022205 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022205 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022205 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022206 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022206 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022206 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022206 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022206 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022207 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022207 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022207 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022207 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022207 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022208 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022208 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022208 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022208 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022208 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022209 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022209 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022209 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022209 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022209 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220a 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220b 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220c 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220d 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220e 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002220f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002220f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022204 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022204 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002400 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002220f 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024f0 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x00000000800024f8 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002408 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002220f +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002408 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f8 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002220f +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x00000000800024f8 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002220f +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002220f +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002220f +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002220f +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002220f +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002408 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002220f 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002220f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022210 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022210 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022210 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022210 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022210 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022211 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022211 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022211 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022211 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022211 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022212 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022212 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022212 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022212 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022212 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022213 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022213 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022213 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022213 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022213 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022214 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022214 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022214 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022214 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022214 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022215 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022215 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022215 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022215 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022215 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022216 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022216 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022216 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022216 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022216 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022217 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022217 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022217 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022217 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022217 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022218 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022218 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022218 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022218 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022218 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022219 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022219 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022219 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022219 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022219 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002220f mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002220f mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002408 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002221a 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x00000000800024f8 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002500 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002410 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002221a +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002410 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002500 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002221a +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002500 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002221a +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002221a +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002221a +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002221a +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002221a +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002410 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221a 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221b 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221c 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221d 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221e 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002221f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002221f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002221f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002221f 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002221f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022220 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022220 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022220 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022220 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022220 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022221 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022221 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022221 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022221 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022221 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022222 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022222 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022222 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022222 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022222 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022223 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022223 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022223 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022223 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022223 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022224 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022224 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022224 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022224 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022224 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022225 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022225 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002221a mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002221a mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002410 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022225 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002500 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002508 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002418 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022225 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002418 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002508 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022225 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002508 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022225 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022225 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022225 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022225 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022225 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002418 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022225 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022225 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022226 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022226 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022226 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022226 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022226 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022227 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022227 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022227 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022227 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022227 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022228 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022228 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022228 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022228 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022228 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022229 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022229 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022229 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022229 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022229 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222a 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222b 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222c 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222d 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222e 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002222f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002222f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002222f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002222f 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002222f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022230 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022230 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022225 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022225 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002418 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022230 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002508 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002510 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002420 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022230 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002420 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002510 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022230 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002510 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022230 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022230 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022230 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022230 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022230 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002420 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022230 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022230 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022231 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022231 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022231 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022231 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022231 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022232 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022232 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022232 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022232 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022232 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022233 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022233 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022233 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022233 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022233 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022234 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022234 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022234 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022234 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022234 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022235 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022235 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022235 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022235 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022235 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022236 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022236 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022236 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022236 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022236 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022237 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022237 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022237 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022237 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022237 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022238 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022238 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022238 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022238 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022238 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022239 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022239 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022239 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022239 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022239 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223a 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022230 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022230 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002420 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002223b 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002510 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002518 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002428 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002223b +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002428 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002518 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002223b +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002518 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002223b +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002223b +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002223b +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002223b +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002223b +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002428 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223b 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223c 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223d 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223e 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002223f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002223f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002223f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002223f 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002223f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022240 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022240 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022240 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022240 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022240 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022241 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022241 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022241 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022241 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022241 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022242 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022242 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022242 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022242 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022242 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022243 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022243 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022243 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022243 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022243 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022244 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022244 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022244 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022244 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022244 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022245 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022245 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022245 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022245 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022245 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022246 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022246 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002223b mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002223b mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002428 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022246 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002518 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002520 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002430 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022246 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002430 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002520 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022246 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002520 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022246 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022246 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022246 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022246 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022246 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002430 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022246 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022246 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022247 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022247 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022247 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022247 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022247 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022248 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022248 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022248 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022248 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022248 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022249 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022249 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022249 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022249 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022249 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224a 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224b 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224c 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224d 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224e 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002224f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002224f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002224f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002224f 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002224f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022250 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022250 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022250 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022250 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022250 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022251 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022251 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022246 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022246 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002430 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022251 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002520 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002528 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002438 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022251 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002438 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002528 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022251 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002528 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022251 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022251 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022251 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022251 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022251 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002438 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022251 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022251 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022252 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022252 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022252 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022252 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022252 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022253 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022253 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022253 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022253 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022253 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022254 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022254 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022254 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022254 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022254 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022255 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022255 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022255 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022255 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022255 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022256 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022256 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022256 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022256 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022256 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022257 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022257 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022257 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022257 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022257 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022258 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022258 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022258 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022258 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022258 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022259 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022259 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022259 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022259 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022259 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225a 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225b 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022251 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022251 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002438 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002225c 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002528 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002530 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002440 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002225c +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002440 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002530 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002225c +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002530 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002225c +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002225c +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002225c +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002225c +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002225c +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002440 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225c 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225d 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225e 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002225f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002225f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002225f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002225f 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002225f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022260 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022260 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022260 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022260 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022260 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022261 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022261 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022261 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022261 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022261 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022262 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022262 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022262 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022262 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022262 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022263 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022263 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022263 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022263 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022263 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022264 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022264 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022264 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022264 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022264 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022265 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022265 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022265 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022265 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022265 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022266 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022266 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022266 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022266 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022266 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022267 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022267 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002225c mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002225c mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002440 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022267 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002530 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002538 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002448 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022267 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002448 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002538 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022267 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002538 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022267 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022267 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022267 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022267 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022267 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002448 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022267 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022267 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022268 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022268 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022268 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022268 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022268 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022269 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022269 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022269 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022269 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022269 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226a 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226b 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226c 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226d 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226e 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002226f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002226f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002226f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002226f 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002226f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022270 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022270 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022270 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022270 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022270 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022271 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022271 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022271 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022271 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022271 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022272 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022272 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022267 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022267 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002448 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022272 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002538 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002540 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002450 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022272 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002450 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002540 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022272 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002540 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022272 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022272 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022272 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022272 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022272 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002450 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022272 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022272 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022273 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022273 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022273 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022273 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022273 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022274 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022274 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022274 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022274 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022274 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022275 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022275 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022275 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022275 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022275 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022276 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022276 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022276 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022276 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022276 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022277 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022277 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022277 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022277 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022277 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022278 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022278 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022278 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022278 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022278 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022279 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022279 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022279 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022279 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022279 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227a 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227b 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227c 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022272 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022272 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002450 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002227d 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002540 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002548 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002458 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002227d +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002458 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002548 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002227d +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002548 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002227d +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002227d +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002227d +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002227d +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002227d +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002458 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227d 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227e 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002227f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002227f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002227f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002227f 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002227f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022280 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022280 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022280 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022280 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022280 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022281 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022281 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022281 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022281 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022281 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022282 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022282 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022282 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022282 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022282 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022283 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022283 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022283 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022283 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022283 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022284 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022284 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022284 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022284 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022284 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022285 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022285 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022285 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022285 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022285 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022286 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022286 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022286 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022286 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022286 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022287 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022287 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022287 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022287 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022287 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022288 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022288 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002227d mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002227d mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002458 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022288 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002548 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002550 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002460 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022288 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002460 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002550 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022288 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002550 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022288 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022288 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022288 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022288 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022288 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002460 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022288 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022288 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022289 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022289 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022289 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022289 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022289 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228a 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228b 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228c 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228d 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228e 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002228f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002228f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002228f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002228f 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002228f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022290 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022290 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022290 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022290 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022290 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022291 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022291 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022291 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022291 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022291 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022292 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022292 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022292 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022292 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022292 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022293 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022293 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022288 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022288 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002460 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x0000000080022293 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002550 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002558 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002468 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x0000000080022293 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002468 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002558 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x0000000080022293 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002558 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x0000000080022293 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x0000000080022293 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x0000000080022293 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x0000000080022293 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x0000000080022293 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002468 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022293 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022293 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022294 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022294 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022294 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022294 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022294 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022295 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022295 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022295 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022295 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022295 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022296 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022296 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022296 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022296 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022296 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022297 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022297 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022297 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022297 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022297 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022298 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022298 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022298 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022298 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022298 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x0000000080022299 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x0000000080022299 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x0000000080022299 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x0000000080022299 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x0000000080022299 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229a +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229a +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229a mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229a 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229a mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229b +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229b +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229b mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229b 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229b mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229c +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229c +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229c mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229c 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229c mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229d +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229d +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229d mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229d 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229d mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229e +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229e +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x0000000080022293 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x0000000080022293 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002468 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x000000008002229e 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002558 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002560 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002470 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x000000008002229e +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002470 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002560 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x000000008002229e +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002560 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x000000008002229e +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x000000008002229e +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x000000008002229e +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x000000008002229e +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x000000008002229e +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002470 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229e 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229e mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x000000008002229f +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x000000008002229f +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x000000008002229f mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x000000008002229f 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x000000008002229f mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a0 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a1 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a2 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a3 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a4 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a5 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a6 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a7 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a8 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222a9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222a9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x000000008002229e mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x000000008002229e mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002470 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800222a9 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002560 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002568 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002478 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800222a9 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002478 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002568 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800222a9 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002568 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800222a9 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800222a9 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800222a9 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800222a9 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800222a9 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002478 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222a9 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222a9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222aa +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222aa +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222aa mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222aa 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222aa mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ab +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ab +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222ab mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222ab 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ab mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ac +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ac +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222ac mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222ac 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ac mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ad +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ad +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222ad mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222ad 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ad mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ae +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ae +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222ae mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222ae 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ae mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222af +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222af +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222af mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222af 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222af mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b0 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b1 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b2 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b3 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800222a9 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800222a9 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002478 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800222b4 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002568 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002570 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002480 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800222b4 +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002480 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002570 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800222b4 +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002570 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800222b4 +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800222b4 +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800222b4 +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800222b4 +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800222b4 +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002480 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b4 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b5 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b6 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b7 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b8 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222b9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222b9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222b9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222b9 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222b9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ba +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ba +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222ba mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222ba 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222ba mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222bb +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bb +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222bb mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222bb 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bb mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222bc +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bc +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222bc mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222bc 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bc mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222bd +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bd +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222bd mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222bd 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bd mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222be +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222be +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222be mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222be 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222be mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222bf +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222bf +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800222b4 mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800222b4 mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002480 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800222bf 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002570 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002578 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002488 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800222bf +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d54 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001d54 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002488 +core 0: 0x0000000080001d58 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001d58 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002578 +core 0: 0x0000000080001d5c (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d5c (0x00048513) x10 0x00000000800222bf +core 0: 0x0000000080001d60 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001d60 (0x00000597) x11 0x0000000080001d60 +core 0: 0x0000000080001d64 (0x41058593) addi a1, a1, 1040 +core 0: 3 0x0000000080001d64 (0x41058593) x11 0x0000000080002170 +core 0: 0x0000000080001d68 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d68 (0xd35ff0ef) x1 0x0000000080001d6c +core 0: >>>> sprintf +core 0: 0x0000000080001a9c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a9c (0xfa010113) x2 0x00000000800220f0 +core 0: 0x0000000080001aa0 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001aa0 (0x03010313) x6 0x0000000080022120 +core 0: 0x0000000080001aa4 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001aa4 (0x02813023) mem 0x0000000080022110 0x0000000080002578 +core 0: 0x0000000080001aa8 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001aa8 (0x00a13423) mem 0x00000000800220f8 0x00000000800222bf +core 0: 0x0000000080001aac (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001aac (0x02c13823) mem 0x0000000080022120 0x0000000000000000 +core 0: 0x0000000080001ab0 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001ab0 (0x02d13c23) mem 0x0000000080022128 0x0000000000000000 +core 0: 0x0000000080001ab4 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001ab4 (0x00050413) x8 0x00000000800222bf +core 0: 0x0000000080001ab8 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001ab8 (0x00058613) x12 0x0000000080002170 +core 0: 0x0000000080001abc (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001abc (0x00000517) x10 0x0000000080001abc +core 0: 0x0000000080001ac0 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001ac0 (0x98050513) x10 0x000000008000143c +core 0: 0x0000000080001ac4 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001ac4 (0x00810593) x11 0x00000000800220f8 +core 0: 0x0000000080001ac8 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001ac8 (0x00030693) x13 0x0000000080022120 +core 0: 0x0000000080001acc (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001acc (0x02113423) mem 0x0000000080022118 0x0000000080001d6c +core 0: 0x0000000080001ad0 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001ad0 (0x04f13423) mem 0x0000000080022138 0x00000000800222bf +core 0: 0x0000000080001ad4 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001ad4 (0x04e13023) mem 0x0000000080022130 0x0000000000000000 +core 0: 0x0000000080001ad8 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001ad8 (0x05013823) mem 0x0000000080022140 0x0000000000000000 +core 0: 0x0000000080001adc (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001adc (0x05113c23) mem 0x0000000080022148 0x0000000000000000 +core 0: 0x0000000080001ae0 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001ae0 (0x00613c23) mem 0x0000000080022108 0x0000000080022120 +core 0: 0x0000000080001ae4 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001ae4 (0xd7cff0ef) x1 0x0000000080001ae8 +core 0: >>>> vprintfmt +core 0: 0x0000000080001060 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001060 (0xea010113) x2 0x0000000080021f90 +core 0: 0x0000000080001064 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001064 (0x14813823) mem 0x00000000800220e0 0x00000000800222bf +core 0: 0x0000000080001068 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001068 (0x14913423) mem 0x00000000800220d8 0x00000000800222bf +core 0: 0x000000008000106c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000106c (0x15213023) mem 0x00000000800220d0 0x0000000080002488 +core 0: 0x0000000080001070 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001070 (0x13413823) mem 0x00000000800220c0 0x0000000080022180 +core 0: 0x0000000080001074 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001074 (0x13513423) mem 0x00000000800220b8 0x0000000000000000 +core 0: 0x0000000080001078 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001078 (0x13613023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x000000008000107c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000107c (0x11713c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001080 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001080 (0x14113c23) mem 0x00000000800220e8 0x0000000080001ae8 +core 0: 0x0000000080001084 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001084 (0x13313c23) mem 0x00000000800220c8 0x0000000080002580 +core 0: 0x0000000080001088 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001088 (0x11813823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x000000008000108c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000108c (0x11913423) mem 0x0000000080022098 0x0000000000000000 +core 0: 0x0000000080001090 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001090 (0x11a13023) mem 0x0000000080022090 0x0000000000000000 +core 0: 0x0000000080001094 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001094 (0x00050493) x9 0x000000008000143c +core 0: 0x0000000080001098 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001098 (0x00060413) x8 0x0000000080002170 +core 0: 0x000000008000109c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000109c (0x00068b93) x23 0x0000000080022120 +core 0: 0x00000000800010a0 (0x00058913) mv s2, a1 +core 0: 3 0x00000000800010a0 (0x00058913) x18 0x00000000800220f8 +core 0: 0x00000000800010a4 (0x02500a13) li s4, 37 +core 0: 3 0x00000000800010a4 (0x02500a13) x20 0x0000000000000025 +core 0: 0x00000000800010a8 (0x05500b13) li s6, 85 +core 0: 3 0x00000000800010a8 (0x05500b13) x22 0x0000000000000055 +core 0: 0x00000000800010ac (0x00001a97) auipc s5, 0x1 +core 0: 3 0x00000000800010ac (0x00001a97) x21 0x00000000800020ac +core 0: 0x00000000800010b0 (0x0d0a8a93) addi s5, s5, 208 +core 0: 3 0x00000000800010b0 (0x0d0a8a93) x21 0x000000008000217c +core 0: 0x00000000800010b4 (0x0140006f) j pc + 0x14 +core 0: 3 0x00000000800010b4 (0x0140006f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002170 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002171 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002171 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002171 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002172 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022bc +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff184 mem 0x00000000800022bc +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x0000000080001300 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x0000000080001300 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x0000000080001300 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022120 +core 0: 0x0000000080001304 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x0000000080001304 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x0000000080001308 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x0000000080001308 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x000000008000130c (0x00f037b3) snez a5, a5 +core 0: 3 0x000000008000130c (0x00f037b3) x15 0x0000000000000001 +core 0: 0x0000000080001310 (0x01902733) slt a4, zero, s9 +core 0: 3 0x0000000080001310 (0x01902733) x14 0x0000000000000000 +core 0: 0x0000000080001314 (0x00f77733) and a4, a4, a5 +core 0: 3 0x0000000080001314 (0x00f77733) x14 0x0000000000000000 +core 0: 0x0000000080001318 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x0000000080001318 (0x008b8b93) x23 0x0000000080022128 +core 0: 0x000000008000131c (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x000000008000131c (0x0a0c0c63) +core 0: 0x00000000800013d4 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x00000000800013d4 (0x00001c17) x24 0x00000000800023d4 +core 0: 0x00000000800013d8 (0xb14c0c13) addi s8, s8, -1260 +core 0: 3 0x00000000800013d8 (0xb14c0c13) x24 0x0000000080001ee8 +core 0: 0x00000000800013dc (0x02800513) li a0, 40 +core 0: 3 0x00000000800013dc (0x02800513) x10 0x0000000000000028 +core 0: 0x00000000800013e0 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x00000000800013e0 (0xf40706e3) +core 0: 0x000000008000132c (0xfff00d13) li s10, -1 +core 0: 3 0x000000008000132c (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222bf 0x28 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222bf mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c0 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c0 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001ee9 +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001ee9 +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c0 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c0 0x6e +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c0 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c1 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c1 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001eea +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eea +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c1 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c1 0x75 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c1 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c2 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c2 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eeb +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eeb +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c2 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c2 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c2 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c3 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c3 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001eec +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eec +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c3 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c3 0x6c +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c3 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c4 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c4 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001eed +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eed +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001330 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x0000000080001330 (0x0009c663) +core 0: 0x000000008000133c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000133c (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001340 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001340 (0x000480e7) x1 0x0000000080001344 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c4 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c4 0x29 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c4 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c5 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c5 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x0000000080001344 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x0000000080001344 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001eee +core 0: 0x0000000080001348 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x0000000080001348 (0x001c0c13) x24 0x0000000080001eee +core 0: 0x000000008000134c (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x000000008000134c (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x0000000080001350 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x0000000080001350 (0xfe0510e3) +core 0: 0x0000000080001354 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x0000000080001354 (0xd7905ae3) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002172 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002173 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c5 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c5 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c5 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c6 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c6 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000003d mem 0x0000000080002173 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002174 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c6 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c6 0x3d +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c6 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c7 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c7 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002174 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002175 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c7 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c7 0x20 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c7 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c8 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c8 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002175 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010d0 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x00000000800010d0 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002176 +core 0: 0x00000000800010d4 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x00000000800010d4 (0x00140c13) x24 0x0000000080002176 +core 0: 0x00000000800010d8 (0xfff00993) li s3, -1 +core 0: 3 0x00000000800010d8 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x00000000800010dc (0x000c0713) mv a4, s8 +core 0: 3 0x00000000800010dc (0x000c0713) x14 0x0000000080002176 +core 0: 0x00000000800010e0 (0x00098c93) mv s9, s3 +core 0: 3 0x00000000800010e0 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x00000000800010e4 (0x02000d13) li s10, 32 +core 0: 3 0x00000000800010e4 (0x02000d13) x26 0x0000000000000020 +core 0: 0x00000000800010e8 (0x00000613) li a2, 0 +core 0: 3 0x00000000800010e8 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800010ec (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x00000000800010ec (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x00000000800010f0 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x00000000800010f0 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x00000000800010f4 (0x00170413) addi s0, a4, 1 +core 0: 3 0x00000000800010f4 (0x00170413) x8 0x0000000080002177 +core 0: 0x00000000800010f8 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x00000000800010f8 (0x06fb6463) +core 0: 0x00000000800010fc (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x00000000800010fc (0x2157c7b3) x15 0x00000000800022c4 +core 0: 0x0000000080001100 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x0000000080001100 (0x0007a783) x15 0xfffffffffffff22c mem 0x00000000800022c4 +core 0: 0x0000000080001104 (0x015787b3) add a5, a5, s5 +core 0: 3 0x0000000080001104 (0x015787b3) x15 0x00000000800013a8 +core 0: 0x0000000080001108 (0x00078067) jr a5 +core 0: 3 0x0000000080001108 (0x00078067) +core 0: 0x00000000800013a8 (0x00a00693) li a3, 10 +core 0: 3 0x00000000800013a8 (0x00a00693) x13 0x000000000000000a +core 0: 0x00000000800013ac (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x00000000800013ac (0xf39ff06f) +core 0: 0x00000000800012e4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800012e4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800012e8 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x00000000800012e8 (0x008b8793) x15 0x0000000080022130 +core 0: 0x00000000800012ec (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x00000000800012ec (0xf2c746e3) +core 0: 0x00000000800012f0 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x00000000800012f0 (0xf20614e3) +core 0: 0x00000000800012f4 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x00000000800012f4 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022128 +core 0: 0x00000000800012f8 (0x00078b93) mv s7, a5 +core 0: 3 0x00000000800012f8 (0x00078b93) x23 0x0000000080022130 +core 0: 0x00000000800012fc (0xf25ff06f) j pc - 0xdc +core 0: 3 0x00000000800012fc (0xf25ff06f) +core 0: 0x0000000080001220 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x0000000080001220 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x0000000080001224 (0x00410613) addi a2, sp, 4 +core 0: 3 0x0000000080001224 (0x00410613) x12 0x0000000080021f94 +core 0: 0x0000000080001228 (0x00100793) li a5, 1 +core 0: 3 0x0000000080001228 (0x00100793) x15 0x0000000000000001 +core 0: 0x000000008000122c (0x00b12023) sw a1, 0(sp) +core 0: 3 0x000000008000122c (0x00b12023) mem 0x0000000080021f90 0x00000000 +core 0: 0x0000000080001230 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x0000000080001230 (0x16d76463) +core 0: 0x0000000080001398 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001398 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000139c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000139c (0xeb5ff06f) +core 0: 0x0000000080001250 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x0000000080001250 (0x0397d263) +core 0: 0x0000000080001274 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001274 (0x202c49b3) x19 0x0000000080021f90 +core 0: 0x0000000080001278 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001278 (0xffc10c93) x25 0x0000000080021f8c +core 0: 0x000000008000127c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000127c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001280 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001280 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f90 +core 0: 0x0000000080001284 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001284 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001288 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001288 (0x00fc7463) +core 0: 0x0000000080001290 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001290 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001294 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001294 (0x00090593) x11 0x00000000800220f8 +core 0: 0x0000000080001298 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001298 (0xffc98993) x19 0x0000000080021f8c +core 0: 0x000000008000129c (0x000480e7) jalr s1 +core 0: 3 0x000000008000129c (0x000480e7) x1 0x00000000800012a0 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c8 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c8 0x30 +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c8 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222c9 +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222c9 +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800012a0 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x00000000800012a0 (0xff9990e3) +core 0: 0x00000000800012a4 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x00000000800012a4 (0xe25ff06f) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x000000000000000a mem 0x0000000080002177 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x00000000800010bc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800010bc (0x00090593) x11 0x00000000800220f8 +core 0: 0x00000000800010c0 (0x00140413) addi s0, s0, 1 +core 0: 3 0x00000000800010c0 (0x00140413) x8 0x0000000080002178 +core 0: 0x00000000800010c4 (0x000480e7) jalr s1 +core 0: 3 0x00000000800010c4 (0x000480e7) x1 0x00000000800010c8 +core 0: >>>> sprintf_putch.0 +core 0: 0x000000008000143c (0x0005b783) ld a5, 0(a1) +core 0: 3 0x000000008000143c (0x0005b783) x15 0x00000000800222c9 mem 0x00000000800220f8 +core 0: 0x0000000080001440 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x0000000080001440 (0x00a78023) mem 0x00000000800222c9 0x0a +core 0: 0x0000000080001444 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x0000000080001444 (0x0005b783) x15 0x00000000800222c9 mem 0x00000000800220f8 +core 0: 0x0000000080001448 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001448 (0x00178793) x15 0x00000000800222ca +core 0: 0x000000008000144c (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x000000008000144c (0x00f5b023) mem 0x00000000800220f8 0x00000000800222ca +core 0: 0x0000000080001450 (0x00008067) ret +core 0: 3 0x0000000080001450 (0x00008067) +core 0: 0x00000000800010c8 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x00000000800010c8 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x00000000800010cc (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x00000000800010cc (0xff4516e3) +core 0: 0x00000000800010b8 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x00000000800010b8 (0x04050a63) +core 0: 0x000000008000110c (0x15813083) ld ra, 344(sp) +core 0: 3 0x000000008000110c (0x15813083) x1 0x0000000080001ae8 mem 0x00000000800220e8 +core 0: 0x0000000080001110 (0x15013403) ld s0, 336(sp) +core 0: 3 0x0000000080001110 (0x15013403) x8 0x00000000800222bf mem 0x00000000800220e0 +core 0: 0x0000000080001114 (0x14813483) ld s1, 328(sp) +core 0: 3 0x0000000080001114 (0x14813483) x9 0x00000000800222bf mem 0x00000000800220d8 +core 0: 0x0000000080001118 (0x14013903) ld s2, 320(sp) +core 0: 3 0x0000000080001118 (0x14013903) x18 0x0000000080002488 mem 0x00000000800220d0 +core 0: 0x000000008000111c (0x13813983) ld s3, 312(sp) +core 0: 3 0x000000008000111c (0x13813983) x19 0x0000000080002580 mem 0x00000000800220c8 +core 0: 0x0000000080001120 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x0000000080001120 (0x13013a03) x20 0x0000000080022180 mem 0x00000000800220c0 +core 0: 0x0000000080001124 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x0000000080001124 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800220b8 +core 0: 0x0000000080001128 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x0000000080001128 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800220b0 +core 0: 0x000000008000112c (0x11813b83) ld s7, 280(sp) +core 0: 3 0x000000008000112c (0x11813b83) x23 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001130 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x0000000080001130 (0x11013c03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x0000000080001134 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x0000000080001134 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022098 +core 0: 0x0000000080001138 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x0000000080001138 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022090 +core 0: 0x000000008000113c (0x16010113) addi sp, sp, 352 +core 0: 3 0x000000008000113c (0x16010113) x2 0x00000000800220f0 +core 0: 0x0000000080001140 (0x00008067) ret +core 0: 3 0x0000000080001140 (0x00008067) +core 0: 0x0000000080001ae8 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001ae8 (0x00813783) x15 0x00000000800222ca mem 0x00000000800220f8 +core 0: 0x0000000080001aec (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001aec (0x00078023) mem 0x00000000800222ca 0x00 +core 0: 0x0000000080001af0 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001af0 (0x00813503) x10 0x00000000800222ca mem 0x00000000800220f8 +core 0: 0x0000000080001af4 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001af4 (0x02813083) x1 0x0000000080001d6c mem 0x0000000080022118 +core 0: 0x0000000080001af8 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001af8 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001afc (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001afc (0x02013403) x8 0x0000000080002578 mem 0x0000000080022110 +core 0: 0x0000000080001b00 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001b00 (0x06010113) x2 0x0000000080022150 +core 0: 0x0000000080001b04 (0x00008067) ret +core 0: 3 0x0000000080001b04 (0x00008067) +core 0: 0x0000000080001d6c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d6c (0x00840413) x8 0x0000000080002580 +core 0: 0x0000000080001d70 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d70 (0x00890913) x18 0x0000000080002490 +core 0: 0x0000000080001d74 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d74 (0x00a484b3) x9 0x00000000800222ca +core 0: 0x0000000080001d78 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d78 (0xfd341ee3) +core 0: 0x0000000080001d7c (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d7c (0x009a0663) +core 0: 0x0000000080001d80 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d80 (0x000a0513) x10 0x0000000080022180 +core 0: 0x0000000080001d84 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d84 (0xbf1ff0ef) x1 0x0000000080001d88 +core 0: >>>> printstr +core 0: 0x0000000080001974 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001974 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022180 +core 0: 0x0000000080001978 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001978 (0xf9010113) x2 0x00000000800220e0 +core 0: 0x000000008000197c (0x03f10693) addi a3, sp, 63 +core 0: 3 0x000000008000197c (0x03f10693) x13 0x000000008002211f +core 0: 0x0000000080001980 (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x0000000080001980 (0xfc06f693) x13 0x0000000080022100 +core 0: 0x0000000080001984 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001984 (0x00078c63) +core 0: 0x0000000080001988 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001988 (0x00050793) x15 0x0000000080022180 +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022181 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022181 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022182 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022182 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022183 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022183 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022184 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022184 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022185 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022185 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022186 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022186 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022187 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022187 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022188 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022188 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022189 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022189 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002218a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002218b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002218c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002218d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002218e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002218f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002218f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022190 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022190 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022191 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022191 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022192 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022192 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022193 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022193 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022194 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022194 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022195 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022195 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022196 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022196 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022197 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022197 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022198 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022198 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022199 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022199 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002219a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002219b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002219c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002219d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002219e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002219f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002219f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221a0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221a1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221a2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221a3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221a6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221a8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221a9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221aa +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221aa +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221ab +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ab +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221ac +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ac +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ad +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ad +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221ae +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ae +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221af +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221af +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221b0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221b1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221b3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221b5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221b6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221b7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221b8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221b9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221b9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221ba +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ba +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221bb +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221bb +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221bc +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221bc +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221bd +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221bd +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221be +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221be +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221bf +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221bf +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221c0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221c1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221c2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221c3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221c4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221c5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221c6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221c7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221c8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221c9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221c9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ca +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ca +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221cb +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221cb +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221cc +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221cc +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221cd +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221cd +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ce +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ce +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221cf +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221cf +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221d2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221d4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221d6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221d7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221d8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221d9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221d9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221da +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221da +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221db +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221db +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221dc +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221dc +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221dd +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221dd +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221de +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221de +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221df +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221df +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221e1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221e2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221e3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221e4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221e5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221e6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221e7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221e8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221e9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221ea +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ea +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221eb +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221eb +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221ec +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ec +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221ed +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ed +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221ee +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ee +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221ef +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ef +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221f0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221f3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221f4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800221f5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221f6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221f7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800221f8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221f9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221f9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800221fa +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221fa +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221fb +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221fb +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221fc +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221fc +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800221fd +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221fd +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221fe +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221fe +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ff +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800221ff +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022200 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022200 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022201 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022201 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022202 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022202 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022203 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022203 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022204 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022204 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022205 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022205 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022206 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022206 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022207 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022207 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022208 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022208 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022209 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022209 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002220a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002220b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002220c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002220d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002220e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002220f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002220f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022210 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022210 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022211 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022211 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022212 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022212 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022213 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022213 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022214 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022214 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022215 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022215 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022216 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022216 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022217 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022217 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022218 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022218 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022219 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022219 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002221a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002221b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002221c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002221d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002221e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002221f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002221f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022220 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022220 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022221 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022221 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022222 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022222 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022223 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022223 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022224 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022224 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022225 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022225 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022226 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022226 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022227 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022227 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022228 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022228 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022229 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022229 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002222a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002222b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002222c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002222d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002222e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002222f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002222f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022230 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022230 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022231 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022231 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022232 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022232 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022233 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022233 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022234 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022234 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022235 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022235 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022236 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022236 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022237 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022237 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022238 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022238 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022239 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022239 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002223a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002223b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002223c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002223d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002223e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002223f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002223f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022240 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022240 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022241 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022241 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022242 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022242 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022243 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022243 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022244 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022244 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022245 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022245 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022246 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022246 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022247 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022247 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022248 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022248 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022249 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022249 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002224a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002224b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002224c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002224d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002224e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002224f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002224f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022250 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022250 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022251 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022251 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022252 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022252 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022253 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022253 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022254 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022254 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022255 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022255 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022256 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022256 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022257 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022257 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022258 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022258 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022259 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022259 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002225a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002225b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002225c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002225d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002225e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002225f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002225f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022260 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022260 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022261 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022261 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022262 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022262 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022263 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022263 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022264 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022264 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022265 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022265 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022266 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022266 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022267 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022267 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022268 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022268 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022269 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022269 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002226a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002226b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002226c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002226d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002226e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002226f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002226f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022270 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022270 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022271 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022271 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022272 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022272 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022273 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022273 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022274 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022274 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022275 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022275 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022276 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022276 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022277 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022277 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022278 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022278 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022279 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022279 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002227a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002227b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002227c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002227d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002227e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002227f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002227f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022280 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022280 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022281 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022281 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022282 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022282 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022283 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022283 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022284 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022284 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022285 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022285 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022286 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022286 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022287 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022287 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022288 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022288 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022289 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022289 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x000000008002228a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002228b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x000000008002228c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x000000008002228d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002228e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002228f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002228f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022290 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022290 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022291 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022291 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022292 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022292 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022293 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022293 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022294 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022294 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022295 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022295 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022296 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022296 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022297 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022297 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022298 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022298 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022299 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x0000000080022299 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x000000008002229a +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229a +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x000000008002229b +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229b +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x000000008002229c +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229c +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x000000008002229d +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229d +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x000000008002229e +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229e +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x000000008002229f +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x000000008002229f +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222a0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222a1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222a2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222a3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222a4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800222a5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222a6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222a7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800222a8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222a9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222a9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800222aa +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222aa +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222ab +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ab +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222ac +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ac +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222ad +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ad +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222ae +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ae +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222af +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222af +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800222b0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222b1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222b2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800222b3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222b4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800222b5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222b6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222b7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222b8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222b9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222b9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222ba +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ba +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800222bb +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222bb +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222bc +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222bc +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222bd +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222bd +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800222be +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222be +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000028 mem 0x00000000800222bf +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222bf +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006e mem 0x00000000800222c0 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c0 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000075 mem 0x00000000800222c1 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c1 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222c2 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c2 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000006c mem 0x00000000800222c3 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c3 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000029 mem 0x00000000800222c4 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c4 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222c5 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c5 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000003d mem 0x00000000800222c6 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c6 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000020 mem 0x00000000800222c7 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c7 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000030 mem 0x00000000800222c8 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c8 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x000000000000000a mem 0x00000000800222c9 +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222c9 +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x000000008000198c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000198c (0x0017c703) x14 0x0000000000000000 mem 0x00000000800222ca +core 0: 0x0000000080001990 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001990 (0x00178793) x15 0x00000000800222ca +core 0: 0x0000000080001994 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001994 (0xfe071ce3) +core 0: 0x0000000080001998 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001998 (0x40a787b3) x15 0x000000000000014a +core 0: 0x000000008000199c (0x04000713) li a4, 64 +core 0: 3 0x000000008000199c (0x04000713) x14 0x0000000000000040 +core 0: 0x00000000800019a0 (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x00000000800019a0 (0x00e6b023) mem 0x0000000080022100 0x0000000000000040 +core 0: 0x00000000800019a4 (0x00100713) li a4, 1 +core 0: 3 0x00000000800019a4 (0x00100713) x14 0x0000000000000001 +core 0: 0x00000000800019a8 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x00000000800019a8 (0x00e6b423) mem 0x0000000080022108 0x0000000000000001 +core 0: 0x00000000800019ac (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x00000000800019ac (0x00a6b823) mem 0x0000000080022110 0x0000000080022180 +core 0: 0x00000000800019b0 (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x00000000800019b0 (0x00f6bc23) mem 0x0000000080022118 0x000000000000014a +core 0: 0x00000000800019b4 (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019b4 (0x0330000f) +core 0: 0x00000000800019b8 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800019b8 (0xbfffe717) x14 0x000000003ffff9b8 +core 0: 0x00000000800019bc (0x68870713) addi a4, a4, 1672 +core 0: 3 0x00000000800019bc (0x68870713) x14 0x0000000040000040 +core 0: 0x00000000800019c0 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x00000000800019c0 (0xbfffe797) x15 0x000000003ffff9c0 +core 0: 0x00000000800019c4 (0x64d7b023) sd a3, 1600(a5) +core 0: 3 0x00000000800019c4 (0x64d7b023) mem 0x0000000040000000 0x0000000080022100 +core 0: 0x00000000800019c8 (0x00073783) ld a5, 0(a4) +core 0: 3 0x00000000800019c8 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x00000000800019cc (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x00000000800019cc (0xfe078ee3) +core 0: 0x00000000800019d0 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x00000000800019d0 (0xbfffe797) x15 0x000000003ffff9d0 +core 0: 0x00000000800019d4 (0x6607b823) sd zero, 1648(a5) +core 0: 3 0x00000000800019d4 (0x6607b823) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x00000000800019d8 (0x0330000f) fence rw,rw +core 0: 3 0x00000000800019d8 (0x0330000f) +core 0: 0x00000000800019dc (0x0006b783) ld a5, 0(a3) +core 0: 3 0x00000000800019dc (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022100 +core 0: 0x00000000800019e0 (0x07010113) addi sp, sp, 112 +core 0: 3 0x00000000800019e0 (0x07010113) x2 0x0000000080022150 +core 0: 0x00000000800019e4 (0x00008067) ret +core 0: 3 0x00000000800019e4 (0x00008067) +core 0: 0x0000000080001d88 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d88 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d8c (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d8c (0xba5ff0ef) x1 0x0000000080001d90 +core 0: >>>> tohost_exit +core 0: 0x0000000080001930 (0x00151793) slli a5, a0, 1 +core 0: 3 0x0000000080001930 (0x00151793) x15 0x0000000000000000 +core 0: 0x0000000080001934 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x0000000080001934 (0x0017e793) x15 0x0000000000000001 +core 0: 0x0000000080001938 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001938 (0xbfffe717) x14 0x000000003ffff938 +core 0: 0x000000008000193c (0x6cf73423) sd a5, 1736(a4) +core 0: 3 0x000000008000193c (0x6cf73423) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x0000000080001940 (0x0000006f) j pc + 0x0 +core 0: 3 0x0000000080001940 (0x0000006f) diff --git a/zfa_micro/zfa.c b/zfa_micro/zfa.c index dad7138..8eebf66 100644 --- a/zfa_micro/zfa.c +++ b/zfa_micro/zfa.c @@ -6,6 +6,30 @@ #define ZFA + +int32_t emulate_fcvtmod_w_d(double a) { + // 1. Trap NaNs and Infinities (Spec says they must return 0) + if (!isfinite(a)) { + return 0; + } + + // 2. Bring the double into a range that fits in a 64-bit int. + // We use fmod to strip away everything above 2^32. + // (2^32 is exactly 4294967296.0) + double truncated_range = fmod(a, 4294967296.0); + + // 3. Convert to 64-bit integer with truncation (RTZ) + int64_t standard_int = (int64_t)truncated_range; + + // 4. Cast to 32-bit signed integer (effectively your SLLI/SRAI) + return (int32_t)standard_int; +} + +static int baremetal_errno = 0; +int *__errno(void) { + return &baremetal_errno; +} + static inline uint64_t read_cycles() { uint64_t start; asm volatile ("rdcycle %0" : "=r"(start)); @@ -13,197 +37,273 @@ static inline uint64_t read_cycles() { } int main() { - // fround.s - 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); + // -- fround.s -- + { + volatile float a, b; + read_cycles(); + for (int i = 0; i < N; i++) { + a = 3.25f; + b = round(a); + } + read_cycles(); } - read_cycles(); - // fround.d - read_cycles(); - for (int i = 0; i < N; i++) { - c = 3.25f; - d = round(c); + // -- fround.d -- + { + volatile double a, b; + read_cycles(); + for (int i = 0; i < N; i++) { + a = 3.25; + b = round(a); + } + read_cycles(); } - read_cycles(); - int res; - // fleq.s - - 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 + // -- fleq.s -- + { + volatile float a = 3.25f, b = 3.0f; + int res; + read_cycles(); + for (int i = 0; i < N; i++) { +#ifndef ZFA + asm volatile ( + "fclass.s t0, %1\n\t" + "fclass.s t1, %2\n\t" + "or t0, t0, t1\n\t" + "andi t2, t0, 0x200\n\t" + "bnez t2, 1f\n\t" + "fle.s %0, %1, %2\n\t" + "j 2f\n\t" + "1:\n\t" + "li %0, 0\n\t" + "2:\n\t" + : "=r" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2" + ); +#else + asm volatile ("fleq.s %0, %1, %2" : "=r" (res) : "f" (a), "f" (b)); +#endif + } + read_cycles(); } - read_cycles(); - // fleq.d - 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 + // -- fleq.d -- + { + volatile double a = 3.25, b = 3.0; + int res; + read_cycles(); + for (int i = 0; i < N; i++) { +#ifndef ZFA + asm volatile ( + "fclass.d t0, %1\n\t" + "fclass.d t1, %2\n\t" + "or t0, t0, t1\n\t" + "andi t2, t0, 0x200\n\t" + "bnez t2, 1f\n\t" + "fle.d %0, %1, %2\n\t" + "j 2f\n\t" + "1:\n\t" + "li %0, 0\n\t" + "2:\n\t" + : "=r" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2" + ); +#else + asm volatile ("fleq.d %0, %1, %2" : "=r" (res) : "f" (a), "f" (b)); +#endif + } + read_cycles(); } - read_cycles(); - // fminm.s - float a_fmin = 0.0f, b_fmin = -0.0f; - float res_fmin; - - 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 + // -- fminm.s -- + { + volatile float a = 0.0f, b = -0.0f, res; + read_cycles(); + for (int i = 0; i < N; i++) { +#ifndef ZFA + asm volatile ( + "fclass.s t0, %1\n\t" + "fclass.s t1, %2\n\t" + "li t2, 0x300\n\t" + "and t3, t0, t2\n\t" + "and t4, t1, t2\n\t" + "bnez t3, 1f\n\t" + "bnez t4, 2f\n\t" + "fmin.s %0, %1, %2\n\t" + "j 3f\n\t" + "1:\n\t" + "bnez t4, 4f\n\t" + "fmv.s %0, %2\n\t" + "j 3f\n\t" + "2:\n\t" + "fmv.s %0, %1\n\t" + "j 3f\n\t" + "4:\n\t" + "fmin.s %0, %1, %2\n\t" + "3:\n\t" + : "=f" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2", "t3", "t4" + ); +#else + asm volatile ("fminm.s %0, %1, %2" : "=f" (res) : "f" (a), "f" (b)); +#endif + } + read_cycles(); } - read_cycles(); - // fli.s - read_cycles(); - volatile float res_fli_s[32]; - 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; + // -- fminm.d -- + { + volatile double a = 0.0, b = -0.0, res; + read_cycles(); + for (int i = 0; i < N; i++) { +#ifndef ZFA + asm volatile ( + "fclass.d t0, %1\n\t" + "fclass.d t1, %2\n\t" + "li t2, 0x300\n\t" + "and t3, t0, t2\n\t" + "and t4, t1, t2\n\t" + "bnez t3, 1f\n\t" + "bnez t4, 2f\n\t" + "fmin.d %0, %1, %2\n\t" + "j 3f\n\t" + "1:\n\t" + "bnez t4, 4f\n\t" + "fmv.d %0, %2\n\t" + "j 3f\n\t" + "2:\n\t" + "fmv.d %0, %1\n\t" + "j 3f\n\t" + "4:\n\t" + "fmin.d %0, %1, %2\n\t" + "3:\n\t" + : "=f" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2", "t3", "t4" + ); +#else + asm volatile ("fminm.d %0, %1, %2" : "=f" (res) : "f" (a), "f" (b)); +#endif + } + read_cycles(); } - read_cycles(); - // fli.d - read_cycles(); - volatile double res_fli_d[32]; - 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; + // -- fli.s -- + { + volatile float res[32]; + read_cycles(); + for (int i = 0; i < N; i++) { + res[0] = -1.0f; + res[1] = -1.0f; + res[2] = 0x1p-16f; + res[3] = 0x1p-15f; + res[4] = 0x1p-14f; + res[5] = 0x1p-13f; + res[6] = 0x1p-12f; + res[7] = 0x1p-11f; + res[8] = 0x1p-10f; + res[9] = 0x1p-9f; + res[10] = 0x1p-8f; + res[11] = 0x1p-7f; + res[12] = 0x1p-6f; + res[13] = 0x1p-5f; + res[14] = 0x1p-4f; + res[15] = 0x1p-3f; + res[16] = 0.25f; + res[17] = 0.5f; + res[18] = 0.75f; + res[19] = 1.0f; + res[20] = 1.25f; + res[21] = 1.5f; + res[22] = 1.75f; + res[23] = 2.0f; + res[24] = 2.5f; + res[25] = 3.0f; + res[26] = 4.0f; + res[27] = 8.0f; + res[28] = 16.0f; + res[29] = 32.0f; + res[30] = INFINITY; + res[31] = NAN; + } + read_cycles(); } - read_cycles(); - // fcvtmod.w.d + // -- fli.d -- + { + volatile double res[32]; + read_cycles(); + for (int i = 0; i < N; i++) { + res[0] = -1.0; + res[1] = -1.0; + res[2] = 0x1p-16; + res[3] = 0x1p-15; + res[4] = 0x1p-14; + res[5] = 0x1p-13; + res[6] = 0x1p-12; + res[7] = 0x1p-11; + res[8] = 0x1p-10; + res[9] = 0x1p-9; + res[10] = 0x1p-8; + res[11] = 0x1p-7; + res[12] = 0x1p-6; + res[13] = 0x1p-5; + res[14] = 0x1p-4; + res[15] = 0x1p-3; + res[16] = 0.25; + res[17] = 0.5; + res[18] = 0.75; + res[19] = 1.0; + res[20] = 1.25; + res[21] = 1.5; + res[22] = 1.75; + res[23] = 2.0; + res[24] = 2.5; + res[25] = 3.0; + res[26] = 4.0; + res[27] = 8.0; + res[28] = 16.0; + res[29] = 32.0; + res[30] = INFINITY; + res[31] = NAN; + } + read_cycles(); + } + + // -- fcvtmod.w.d -- + { + static const double inputs[N] = { + 2147483649.0, // 2^31 + 1 -> -2147483647 (mod 2^32) + -2147483649.0, // -2^31 - 1 -> 2147483647 (mod 2^32) + 4294967297.0, // 2^32 + 1 -> 1 (mod 2^32) + -4294967297.0, // -2^32 - 1 -> -1 (mod 2^32) + 3.25, // in-range + 0.0, // exact zero + -0.0, // negative zero + INFINITY, + -INFINITY, + NAN + }; + volatile double a; + int32_t res; + read_cycles(); + for (int i = 0; i < N; i++) { + a = inputs[i]; + asm volatile("" : "+f"(a)); +#ifndef ZFA + res = emulate_fcvtmod_w_d(a); +#else + asm volatile ("fcvtmod.w.d %0, %1, rtz" : "=r" (res) : "f" (a)); +#endif + asm volatile("" : : "r"(res)); + } + read_cycles(); + } + + return 0; } + diff --git a/zfhmin.parquet b/zfhmin.parquet new file mode 100644 index 0000000..b0c7e0a Binary files /dev/null and b/zfhmin.parquet differ diff --git a/zfhmin_micro/zfhmin.c b/zfhmin_micro/zfhmin.c index 2fa2099..c4d2ed7 100644 --- a/zfhmin_micro/zfhmin.c +++ b/zfhmin_micro/zfhmin.c @@ -1,7 +1,7 @@ #include #include -#define N 10 +#define N 100 static inline uint64_t read_cycles() { uint64_t start; diff --git a/zicond_micro/zicond.c b/zicond_micro/zicond.c index c9eec50..e022984 100644 --- a/zicond_micro/zicond.c +++ b/zicond_micro/zicond.c @@ -2,7 +2,6 @@ #define N 128 #define ITERATIONS 1 - // Static "messy" data to ensure the branch predictor cannot "learn" the pattern static const uint64_t src_a[N] = { 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, @@ -22,6 +21,17 @@ static const uint64_t src_b[N] = { 1130, 1140, 1150, 1160, 1170, 1180, 1190, 1200, 1210, 1220, 1230, 1240, 1250, 1260, 1270, 1280 }; +static const uint64_t src_c[N] = { + 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, + 170, 180, 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, 310, 320, + 330, 340, 350, 360, 370, 380, 390, 400, 410, 420, 430, 440, 450, 460, 470, 480, + 490, 500, 510, 520, 530, 540, 550, 560, 570, 580, 590, 600, 610, 620, 630, 640, + 650, 660, 670, 680, 690, 700, 710, 720, 730, 740, 750, 760, 770, 780, 790, 800, + 810, 820, 830, 840, 850, 860, 870, 880, 890, 900, 910, 920, 930, 940, 950, 960, + 970, 980, 990, 1000, 1010, 1020, 1030, 1040, 1050, 1060, 1070, 1080, 1090, 1100, 1110, 1120, + 1130, 1140, 1150, 1160, 1170, 1180, 1190, 1200, 1210, 1220, 1230, 1240, 1250, 1260, 1270, 1280 +}; + volatile uint64_t results[N]; static inline uint64_t read_cycles() { @@ -36,8 +46,19 @@ int main() { for (int i = 0; i < N; i++) { uint64_t a = src_a[i]; uint64_t b = src_b[i]; + uint64_t res; - results[i] = (a != 0) ? b : 0; + #ifdef ZICOND + __asm__ ( + "czero.eqz %0, %1, %2" + : "=r" (res) // %0: output + : "r" (b), "r" (a) // %1: rs1, %2: rs2 + ); + #else + res = (a == 0) ? b : 0; + #endif + + results[i] = res; } } read_cycles(); @@ -47,10 +68,52 @@ int main() { for (int i = 0; i < N; i++) { uint64_t a = src_a[i]; uint64_t b = src_b[i]; + uint64_t res; - results[i] = (a != 0) ? b : 0; + #ifdef ZICOND + __asm__ ( + "czero.nez %0, %1, %2" + : "=r" (res) // %0: output + : "r" (b), "r" (a) // %1: rs1, %2: rs2 + ); + #else + res = (a != 0) ? b : 0; + #endif + + results[i] = res; } } + read_cycles(); + read_cycles(); + + for (int j = 0; j < ITERATIONS; j++) { + for (int i = 0; i < N; i++) { + uint64_t a = src_b[i]; + uint64_t b = src_c[i]; + uint64_t c = src_a[i]; + uint64_t res; + + #ifdef ZICOND + uint64_t val_if_true = a | b; + uint64_t val_if_false = a & b; + uint64_t tmp1, tmp2; + + __asm__ ( + "czero.eqz %0, %3, %2\n\t" // If c != 0, %0 = val_if_true, else 0 + "czero.nez %1, %4, %2\n\t" // If c == 0, %1 = val_if_false, else 0 + "or %0, %0, %1" // Combine them + : "=&r" (res), "=&r" (tmp2) + : "r" (c), "r" (val_if_true), "r" (val_if_false) + ); + #else + // Standard C - likely to compile to a branch if not optimized + res = (c != 0) ? (a | b) : (a & b); + #endif + + results[i] = res; + } + } + read_cycles(); return 0; diff --git a/zvfhmin_micro/zvfhmin.c b/zvfhmin_micro/zvfhmin.c index b27543c..b496152 100644 --- a/zvfhmin_micro/zvfhmin.c +++ b/zvfhmin_micro/zvfhmin.c @@ -17,21 +17,17 @@ static inline uint64_t read_cycles() { } void benchmark() { - // 1. Widening: _Float16 -> float - uint64_t t0 = read_cycles(); + read_cycles(); for (int i = 0; i < N; i++) { b[i] = (float)a[i]; } - uint64_t t1 = read_cycles(); + read_cycles(); - // 2. Narrowing: float -> _Float16 - uint64_t t2 = read_cycles(); + read_cycles(); for (int i = 0; i < N; i++) { a[i] = (_Float16)b[i]; } - uint64_t t3 = read_cycles(); - - // In a real app, print (t1-t0) and (t3-t2) + read_cycles(); } int main() {